看一下Spring Data
Access网页,特别是第11.7.3节,其中涵盖了使用NamedParameterJdbcTemplate构建’IN’子句。
例如
NamedParameterJdbcTemplate jdbcTemplate = new NamedParameterJdbcTemplate(dataSource);String sql = "select * from emp where empno in (:ids)";List idList = new ArrayList(2);idList.add(new Long(7782));idList.add(new Long(7788));Map parameters = new HashMap();parameters.put("ids", idList);List emps = jdbcTemplate.query(sql, parameters, new EmpMapper());
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)