赞
踩
1.假设使用事务:
(1)不使用批处理而是一条一条的SQL语句发送给MySQL的方式,如果有很多语句这样执行,每次到要和MySQL通讯,开销太大;另一方面,这样执行的SQL语句如果中间有一条发送错误,后面的SQL语句是不会执行的,理解为抛出异常,后面的语句当然就不执行了
(2)使用批处理方法,一次过将要执行的SQL语句发送给MySQL,MySQL的机制是:中间有语句错误,后面正确的语句还是会执行
2.假设不使用事务:这个简单,只要事务控制对了,中间有错的话都回滚就是了,后面的SQL语句就无所谓执不执行了
下面给一个executeBatch的Demo
- package cn.bl.v2;
-
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.Statement;
-
- import org.junit.Test;
-
- import cn.bl.DBUtil;
-
- /**
- * 批处理
- * @author BarryLee
- * @2018年9月18日@下午11:15:50
- */
- public class Batch {
-
- //1.Statement方式
- @Test
- public void test1() throws Exception {
- Connection conn = DBUtil.getConnection();
- Statement st = conn.createStatement();
- for(int i = 0;i<10;i++) {
- //这个sql没什么意义,只是为了区分插入的不同数据罢了
- String sql1 = " insert into pp(name) values('xl"+i+"') ";
- st.addBatch(sql1);
- }
-
- //删除name以xl开头的记录
- String sql2 = " delete from pp where name like 'xl%' ";
- st.addBatch(sql2);
-
- int[]res = st.executeBatch();
- for (int i : res) {//每一行sql的影响记录数
- System.out.println(i);
- //sql1都是输出1
- //sql2对应的是10
- }
- }
-
- //2.PreparedStatement方式
- @Test
- public void test2() throws Exception {
- Connection conn = DBUtil.getConnection();
- String sql = " insert into pp(name) values(?) ";
- PreparedStatement pst = conn.prepareStatement(sql);
- for(int i = 0;i<10;i++) {
- pst.setString(1, "xl"+i);
- pst.addBatch();//这里不能带参
- }
- sql = " delete from pp where name like 'xl%' ";
- pst.addBatch(sql);
-
- int[]res = pst.executeBatch();
- for (int i : res) {//每一行sql的影响记录数
- System.out.println(i);
- //for循环里面添加的sql语句对应的都是输出1
- //最后一句对应的是10
- }
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。