sql 批量处理 JDBC
程序员文章站
2024-03-01 16:57:40
...
con.setAutoCommit(false);
String delSQL1="delete from tb_czxs_user1 where iddel="+id1+"";
String delSQL2="delete from tb_czxs_user2 where iddel="+id2+"";
stmt.addBatch(delSQL1);
stmt.addBatch(delSQL2);
stmt.executeBatch();
con.commit();
con.setAutoCommit(true);
上一篇: JDBC如何拼接不确定数量的参数
下一篇: JDBC查询
推荐阅读
-
JDBC 处理查询
-
sql 批量处理 JDBC
-
JDBC入门、简单SQL查询
-
《JDBC中SQL条件查询》
-
如何批量测试Mybatis项目中的Sql是否正确详解
-
SQL Server 2000 Driver for JDBC Service Pack 3 安装测试方法
-
SQL Server 报错:com.microsoft.sqlserver.jdbc.SQLServerException: The "variant" data type is not suppor...
-
在mybatis执行SQL语句之前进行拦击处理实例
-
com.microsoft.sqlserver.jdbc.SQLServerException: SQL Server version 8 is not supported by this drive
-
详解JDBC对Mysql utf8mb4字符集的处理