码迷,mamicode.com
首页 > 数据库 > 详细

Spring jdbc 批量修改

时间:2014-11-19 02:25:02      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   sp   strong   on   bs   size   

public int[] updateBatchByjdbc(final List<String[]> ids) {
        int[] updateCounts = this.getJdbcTemplate().batchUpdate(
                "update CS_ORDER set AUDIT_STATUS=? where id = ?",
                new BatchPreparedStatementSetter() {

                    @Override
                    public void setValues(PreparedStatement ps, int i)
                            throws SQLException {
                        ps.setString(1, ids.get(i)[0]);
                        ps.setString(2, ids.get(i)[1]);
                    }

                    @Override
                    public int getBatchSize() {
                        return ids.size();
                    }
                });
        return updateCounts;
    }

i=getBatchSize()  //决定循环次数

Spring jdbc 批量修改

标签:style   io   ar   color   sp   strong   on   bs   size   

原文地址:http://my.oschina.net/u/1778309/blog/346057

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!