PreparedStatement批量处理和事务

  1. PreparedStatement批量处理和事务代码如下:
  2. /*
  3. * PreparedStatement:
  4. 1.addBatch() 将一组参数添加到 PreparedStatement对象内部
  5. 2.executeBatch() 将一批参数提交给数据库来执行,如果全部命令执行成功,则返回更新计数组成的数组。
  6. *
  7. */
  8. public class PreparedStatementCommitAndRollback {
  9. public static void main(String args[]) {
  10. Connection con = null;
  11. PreparedStatement pstm = null;
  12. try {
  13. // 1. 建立与数据库的连接
  14. con = JDBCUtil.getConnection();
  15. // 2. 执行sql语句
  16. // 1).先创建PreparedStatement语句(发送slq请求):
  17. pstm = con.prepareStatement("insert into student values(?,?,?,?)");
  18. con.setAutoCommit(false);//1,首先把Auto commit设置为false,不让它自动提交
  19. // 2) 设置sql语句1
  20. pstm.setInt(1, 33);
  21. pstm.setString(2,"wangqin");
  22. pstm.setString(3, "c++");
  23. pstm.setDouble(4, 78.5);
  24. // 3) 将一组参数添加到此 PreparedStatement 对象的批处理命令中。
  25. pstm.addBatch();
  26. // 2) 设置sql语句2
  27. pstm.setInt(1, 34);
  28. pstm.setString(2,"wuytun");
  29. pstm.setString(3, "c");
  30. pstm.setDouble(4, 77);
  31. // 3) 将一组参数添加到此 PreparedStatement 对象的批处理命令中。
  32. pstm.addBatch();
  33. // 2) 设置sql语句3
  34. pstm.setInt(1, 31);
  35. pstm.setString(2,"tetet");
  36. pstm.setString(3, "c++");
  37. pstm.setDouble(4, 90);
  38. // 3) 将一组参数添加到此 PreparedStatement 对象的批处理命令中。
  39. pstm.addBatch();
  40. // 2) 设置sql语句4
  41. pstm.setInt(1, 32);
  42. pstm.setString(2,"liug");
  43. pstm.setString(3, "c");
  44. pstm.setDouble(4, 50);
  45. // 3) 将一组参数添加到此 PreparedStatement 对象的批处理命令中。
  46. pstm.addBatch();
  47. // 4) 将一批参数提交给数据库来执行,如果全部命令执行成功,则返回更新计数组成的数组。
  48. pstm.executeBatch();
  49. System.out.println("插入成功!");
  50. // 若成功执行完所有的插入操作,则正常结束
  51. con.commit();//2,进行手动提交(commit)
  52. System.out.println("提交成功!");
  53. con.setAutoCommit(true);//3,提交完成后回复现场将Auto commit,还原为true,
  54. } catch (SQLException e) {
  55. try {
  56. // 若出现异常,对数据库中所有已完成的操作全部撤销,则回滚到事务开始状态
  57. if(!con.isClosed()){
  58. con.rollback();//4,当异常发生执行catch中SQLException时,记得要rollback(回滚);
  59. System.out.println("插入失败,回滚!");
  60. con.setAutoCommit(true);
  61. }
  62. } catch (SQLException e1) {
  63. e1.printStackTrace();
  64. }
  65. }finally{
  66. JDBCUtil.closePreparedStatement(pstm);
  67. JDBCUtil.closeConnection(con);
  68. }
  69. }
  70. }
  1. 这是Statement的代码,同上:
  2. stm = con.createStatement();
  3. con.setAutoCommit(false);
  4. // 若不出现异常,则继续执行到try语句完,否则跳转到catch语句中
  5. stm.addBatch("insert into student values(23,'tangbao','高数',100)");
  6. stm.addBatch("insert into student values(24,'王定','c#',98)");
  7. stm.addBatch("insert into student values(25,'王国云','java',90)");
  8. stm.addBatch("insert into student values(26,'溜出','英语',89)");
  9. stm.addBatch("insert into student values(27,'wqde','java',63)");
  10. /*
  11. * int[] executeBatch() throws
  12. * SQLException将一批命令提交给数据库来执行,如果全部命令执行成功,则返回更新计数组成的数组。
  13. */
  14. stm.executeBatch();
上一篇:stat 查看文件修改时间


下一篇:Mysql批量更新的一个坑-&allowMultiQueries=true允许批量更新(转)