欧阳良才

不是别人,就是我阳良才
随笔 - 13, 文章 - 8, 评论 - 2, 引用 - 0
数据加载中……

java 记事本数据 批量插入

public int insert(final List<policycar> list) {
  this.getSqlMapClientTemplate().execute(new SqlMapClientCallback() {
   public Object doInSqlMapClient(SqlMapExecutor arg0) throws SQLException {
    arg0.startBatch();
    for(int i=0,count=list.size();i<count;i++)
    {
     arg0.insert("insertpol", list.get(i));
    }
    arg0.executeBatch();
    return 1;
   }
  });
  return 0;
 }

posted on 2012-04-20 15:47 欧阳良才 阅读(303) 评论(0)  编辑  收藏 所属分类: JAVA


只有注册用户登录后才能发表评论。


网站导航: