1. 批处理

  • 批处理只针对更新(增,删,改)语句.
  • MySql 的批处理默认是关闭的, 需要在 url 中配置参数:

    jdbc:mysal://localhost:3306/mydb1?rewriteBatchedStatements=true

2. PreparedStatement 批处理

  • PreparedStatement 对象内部有集合.
  • 使用循环疯狂的向 pstmt 中添加 sql 参数, 使用一组参数与模板就可以匹配出

    一条 sql 语句.
  • 调用它的执行批方法, 完成向数据库发送.
// PreparedStatement 批处理
public class Demo{ public void fun() throws SQLException { // 获取 PreparedStatement 对象
Connection con = JdbcUtils.getConnection();
String sql = "INSERT INTO stu VALUES(?,?,?,?)";
PreparedStatement pstmt = con.prepareStatement(sql); // 使用循环疯狂添加参数
for(int i = 0; i< 10000; i++){
pstmt.setInt(1,i+1); // 学号
pstmt.setString(2, "stu_"+i); // 姓名
pstmt.setInt(3,i); // 年龄
pstmt.setString(4, i%2==0?"male":"female"); //性别 // 添加批, 这一组参数就保存到集合中.
pstmt.addBatch();
} // 执行批方法, 向数据库发送 sql 语句
pstmt.executeBatch();
}
}

参考资料:

05-11 22:03