首页 >Java >java教程 >如何使用PreparedStatement高效地将多行插入MySQL?

如何使用PreparedStatement高效地将多行插入MySQL?

Barbara Streisand
Barbara Streisand原创
2024-11-29 11:16:12778浏览

How Can I Efficiently Insert Multiple Rows into MySQL Using PreparedStatement?

Inserting Multiple Rows into MySQL using PreparedStatement

When attempting to efficiently insert numerous rows into a MySQL table, one may encounter limitations with传统的 PreparedStatement 方式,因为无法在 PreparedStatement 中事先确定需要插入的行数。

为了优化插入过程,MySQL 提供了批量插入语法,如下所示:

INSERT INTO table (col1, col2) VALUES ('val1', 'val2'), ('val1', 'val2')[, ...]

使用 PreparedStatement 进行批量插入

使用 PreparedStatement 进行批量插入的步骤如下:

  1. 使用 addBatch() 方法将每行数据添加到批处理中。
  2. 使用 executeBatch() 方法执行批处理。

示例代码:

public void save(List<Entity> entities) throws SQLException {
    try (
        Connection connection = database.getConnection();
        PreparedStatement statement = connection.prepareStatement(SQL_INSERT);
    ) {
        int i = 0;

        for (Entity entity : entities) {
            statement.setString(1, entity.getSomeProperty());
            // ...

            statement.addBatch();
            i++;

            if (i % 1000 == 0 || i == entities.size()) {
                statement.executeBatch(); // Execute every 1000 items.
            }
        }
    }
}

需要注意的是,执行批量插入时,建议每隔一定数量的行(例如 1000)执行一次,因为某些 JDBC 驱动程序或数据库可能对批量长度有限制。

相关参考:

  • JDBC tutorial - Using PreparedStatement
  • JDBC tutorial - Using Statement Objects for Batch Updates

以上是如何使用PreparedStatement高效地将多行插入MySQL?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn