Spring jdbctemplate 中查询语句有IN 怎么传参数
1个回答
展开全部
用这个NamedParameterJdbcTemplate来解决,不能直接用JdbcTemplate。
譬如sql为“select * from test_abc where id in (:param)”;
String sql = "select * from test_abc where id in (:param)";
List<Long> ids = new ArrayList<Long>();
ids.add(100l);
ids.add(101l);
Map<String, Object> paramMap = new HashMap<String, Object>();
paramMap.put("param", ids);
NamedParameterJdbcTemplate jdbc = new NamedParameterJdbcTemplate(jdbcTemplate);
jdbc.query(sql, paramMap, new RowMapper<AlarmSheet>() {
@Override
public AlarmSheet mapRow(ResultSet rs, int index)
throws SQLException {
System.out.println("----- id="+rs.getLong("name"));
// System.out.println(index+"----- id="+rs.getString("name"));
return null;
}
});
测试的表结构如下
create table test_abc (
id integer,
name varchar(64),
age long
);
通过执行上述测试代码,由于rs.getLong("name")会出异常,看到实际这个sql已经变成如下了
org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [select * from test_abc where id in (?, ?)]; SQL state [99999]; error code [17059]; 无法转换为内部表示; nested exception is java.sql.SQLException: 无法转换为内部表示
sql中in范围查询,实际根据传入参数的List个数,做了一些修改,而原生的JdbcTemplate不会这么做。
譬如sql为“select * from test_abc where id in (:param)”;
String sql = "select * from test_abc where id in (:param)";
List<Long> ids = new ArrayList<Long>();
ids.add(100l);
ids.add(101l);
Map<String, Object> paramMap = new HashMap<String, Object>();
paramMap.put("param", ids);
NamedParameterJdbcTemplate jdbc = new NamedParameterJdbcTemplate(jdbcTemplate);
jdbc.query(sql, paramMap, new RowMapper<AlarmSheet>() {
@Override
public AlarmSheet mapRow(ResultSet rs, int index)
throws SQLException {
System.out.println("----- id="+rs.getLong("name"));
// System.out.println(index+"----- id="+rs.getString("name"));
return null;
}
});
测试的表结构如下
create table test_abc (
id integer,
name varchar(64),
age long
);
通过执行上述测试代码,由于rs.getLong("name")会出异常,看到实际这个sql已经变成如下了
org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [select * from test_abc where id in (?, ?)]; SQL state [99999]; error code [17059]; 无法转换为内部表示; nested exception is java.sql.SQLException: 无法转换为内部表示
sql中in范围查询,实际根据传入参数的List个数,做了一些修改,而原生的JdbcTemplate不会这么做。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |