📅  最后修改于: 2020-11-13 04:36:22             🧑  作者: Mango
批处理允许您将相关的SQL语句分组为一个批处理,并通过一次调用将其提交给数据库。
当您一次将多个SQL语句发送到数据库时,可以减少通信开销,从而提高性能。
不需要JDBC驱动程序即可支持此功能。您应该使用DatabaseMetaData.supportsBatchUpdates()方法来确定目标数据库是否支持批量更新处理。如果您的JDBC驱动程序支持此功能,则该方法返回true。
Statement,PreparedStatement和CallableStatement的addBatch()方法用于将单个语句添加到批处理中。 executeBatch()用于开始执行分组在一起的所有语句。
executeBatch()返回一个整数数组,该数组的每个元素代表相应更新语句的更新计数。
正如可以将语句添加到批处理中一样,可以使用clearBatch()方法将其删除。此方法删除使用addBatch()方法添加的所有语句。但是,您不能有选择地选择要删除的语句。
这是对语句对象使用批处理的典型步骤序列-
使用createStatement()方法创建一个Statement对象。
使用setAutoCommit()将auto-commit设置为false。
使用创建的语句对象上的addBatch()方法,将任意多的SQL语句添加到批处理中。
使用创建的语句对象上的executeBatch()方法执行所有SQL语句。
最后,使用commit()方法提交所有更改。
以下代码段提供了使用Statement对象进行批量更新的示例-
// Create statement object
Statement stmt = conn.createStatement();
// Set auto-commit to false
conn.setAutoCommit(false);
// Create SQL statement
String SQL = "INSERT INTO Employees (id, first, last, age) " +
"VALUES(200,'Zia', 'Ali', 30)";
// Add above SQL statement in the batch.
stmt.addBatch(SQL);
// Create one more SQL statement
String SQL = "INSERT INTO Employees (id, first, last, age) " +
"VALUES(201,'Raj', 'Kumar', 35)";
// Add above SQL statement in the batch.
stmt.addBatch(SQL);
// Create one more SQL statement
String SQL = "UPDATE Employees SET age = 35 " +
"WHERE id = 100";
// Add above SQL statement in the batch.
stmt.addBatch(SQL);
// Create an int[] to hold returned values
int[] count = stmt.executeBatch();
//Explicitly commit statements to apply changes
conn.commit();
为了更好地理解,让我们研究批处理示例代码。
这是将批处理与PrepareStatement对象一起使用的典型步骤序列-
使用占位符创建SQL语句。
使用prepareStatement()方法创建PrepareStatement对象。
使用setAutoCommit()将auto-commit设置为false。
使用创建的语句对象上的addBatch()方法,将任意多的SQL语句添加到批处理中。
使用创建的语句对象上的executeBatch()方法执行所有SQL语句。
最后,使用commit()方法提交所有更改。
以下代码段提供了使用PrepareStatement对象进行批量更新的示例-
// Create SQL statement
String SQL = "INSERT INTO Employees (id, first, last, age) " +
"VALUES(?, ?, ?, ?)";
// Create PrepareStatement object
PreparedStatemen pstmt = conn.prepareStatement(SQL);
//Set auto-commit to false
conn.setAutoCommit(false);
// Set the variables
pstmt.setInt( 1, 400 );
pstmt.setString( 2, "Pappu" );
pstmt.setString( 3, "Singh" );
pstmt.setInt( 4, 33 );
// Add it to the batch
pstmt.addBatch();
// Set the variables
pstmt.setInt( 1, 401 );
pstmt.setString( 2, "Pawan" );
pstmt.setString( 3, "Singh" );
pstmt.setInt( 4, 31 );
// Add it to the batch
pstmt.addBatch();
//add more batches
.
.
.
.
//Create an int[] to hold returned values
int[] count = stmt.executeBatch();
//Explicitly commit statements to apply changes
conn.commit();
为了更好地理解,让我们研究批处理示例代码。