- JDBC教程
- JDBC - 主页
- JDBC - 简介
- JDBC - SQL 语法
- JDBC - 环境
- JDBC - 示例代码
- JDBC - 驱动程序类型
- JDBC - 连接
- JDBC - 语句
- JDBC - 结果集
- JDBC - 数据类型
- JDBC - 事务
- JDBC - 异常
- JDBC - 批处理
- JDBC - 存储过程
- JDBC - 流数据
- JDBC 示例
- JDBC - 创建数据库
- JDBC - 选择数据库
- JDBC - 删除数据库
- JDBC - 创建表
- JDBC - 删除表
- JDBC - 插入记录
- JDBC - 选择记录
- JDBC - 更新记录
- JDBC - 删除记录
- JDBC - WHERE 子句
- JDBC - Like 子句
- JDBC - 数据排序
- JDBC 有用资源
- JDBC - 问题与解答
- JDBC - 快速指南
- JDBC - 有用的资源
- JDBC - 讨论
- 有用 - Java 教程
JDBC - 批处理
批处理允许您将相关的 SQL 语句分组为一批,并通过一次数据库调用将它们提交。
当您一次向数据库发送多个 SQL 语句时,可以减少通信开销,从而提高性能。
JDBC 驱动程序不需要支持此功能。您应该使用DatabaseMetaData.supportsBatchUpdates()方法来确定目标数据库是否支持批量更新处理。如果您的 JDBC 驱动程序支持此功能,该方法将返回 true。
Statement、PreparedStatement和CallableStatement的addBatch ()方法用于将单个语句添加到批处理中。executeBatch ()用于开始执行组合在一起的所有语句。
executeBatch ()返回一个整数数组,数组的每个元素代表相应更新语句的更新计数。
正如您可以将语句添加到批处理中进行处理一样,您可以使用clearBatch()方法删除它们。此方法会删除使用 addBatch() 方法添加的所有语句。但是,您不能有选择地选择要删除的语句。
使用语句对象进行批处理
以下是使用语句对象进行批处理的典型步骤序列 -
使用createStatement()方法创建一个 Statement 对象。
使用setAutoCommit()将自动提交设置为 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对象进行批处理
以下是使用带有PrepareStatement对象的批处理的典型步骤序列 -
创建带有占位符的 SQL 语句。
使用prepareStatement() 方法创建PrepareStatement 对象。
使用setAutoCommit()将自动提交设置为 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();
为了更好地理解,让我们研究批处理示例代码。