当前位置:Gxlcms > 数据库问题 > jdbc批量插入数据

jdbc批量插入数据

时间:2021-07-01 10:21:17 帮助过:25人阅读

//插入很多书(批量插入用法)
public void insertBooks(List<Book> book)
{
  final List<Book> tempBook=book;
  String sql="insert into book(name,pbYear) values(?,?)";
  jdbcTemplate.batchUpdate(sql, new BatchPreparedStatementSetter()
  {
   public void setValues(PreparedStatement ps,int i)throws SQLException
   {
    String name=tempBook.get(i).getName();
    int pbYear=tempBook.get(i).getPbYear();
    ps.setString(1, name);
    ps.setInt(2, pbYear);
   }
   public int getBatchSize()
   {
    return tempBook.size();
   }
  });
   
}

jdbc批量插入数据

标签:upd   row   list   oid   用法   hup   size   update   new   

人气教程排行