我的功能是f_wfc_transaction_summary_isocc_ft_sum_no_tid('2015-07-01 14:00:00','2015-07-21 01:00:00', array['EGY','IND'], 'LINK')
where wfc_result in ('TM_OK', 'TM_NO_CHANGE')
我正在使用NamedParameterJdbcTemplate:
MapSqlParameterSource params = new MapSqlParameterSource();
params.addValue("isoCountryCode", isoCountryCode ,java.sql.Types.ARRAY ); --> this is the array['EGY','IND']
result = template.queryForList(overallDataQuery,params);
我试过几种方法:
1. isoCountryCode字段作为数组
2. isoCountryCode字段作为格式的字符串 - {'EGY','IND'}
但是,我一直收到postgres错误 - String无法转换为postgres数组类型。
答案 0 :(得分:2)
找到解决方案:
MapSqlParameterSource params = new MapSqlParameterSource();
params.addValue("featureType", featureType);
params.addValue("fromDate", fromDate);
params.addValue("toDate", toDate);
Array array = null;
try {
Connection con = dataSource.getConnection();
array = con.createArrayOf("text", isoCountryCode);
}
catch (SQLException e) {}
params.addValue("isoCountryCode", array);