您可以使用以下示例来实现这一点:使用 addBatch 和 executeBatch 命令同时执行多个SQL命令。
批处理允许您将相关的 SQL 语句分组到一个批处理中,并通过一次调用数据库来提交它们。参考
一次向数据库发送多个 SQL 语句时,可以减少通信开销,从而提高性能。
- 不需要 JDBC 驱动程序来支持此功能。您应该使用该
DatabaseMetaData.supportsBatchUpdates()
方法来确定目标数据库是否支持批量更新处理。如果您的 JDBC 驱动程序支持此功能,则该方法返回 true。
- Statement、PreparedStatement 和 CallableStatement的addBatch ()方法用于将单个语句添加到批处理中。
executeBatch()
用于开始执行组合在一起的所有语句。
- executeBatch ()返回一个整数数组,数组的每个元素代表各自更新语句的更新计数。
- 就像您可以将语句添加到批处理中以进行处理一样,您可以使用clearBatch ()方法删除它们。此方法会删除您使用该
addBatch()
方法添加的所有语句。但是,您不能有选择地选择要删除的语句。
例子:
import java.sql.*;
public class jdbcConn {
public static void main(String[] args) throws Exception{
Class.forName("org.apache.derby.jdbc.ClientDriver");
Connection con = DriverManager.getConnection
("jdbc:derby://localhost:1527/testDb","name","pass");
Statement stmt = con.createStatement
(ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_UPDATABLE);
String insertEmp1 = "insert into emp values
(10,'jay','trainee')";
String insertEmp2 = "insert into emp values
(11,'jayes','trainee')";
String insertEmp3 = "insert into emp values
(12,'shail','trainee')";
con.setAutoCommit(false);
stmt.addBatch(insertEmp1);//inserting Query in stmt
stmt.addBatch(insertEmp2);
stmt.addBatch(insertEmp3);
ResultSet rs = stmt.executeQuery("select * from emp");
rs.last();
System.out.println("rows before batch execution= "
+ rs.getRow());
stmt.executeBatch();
con.commit();
System.out.println("Batch executed");
rs = stmt.executeQuery("select * from emp");
rs.last();
System.out.println("rows after batch execution= "
+ rs.getRow());
}
}
参考http://www.tutorialspoint.com/javaexamples/jdbc_executebatch.htm