sql >> Base de Datos >  >> RDS >> Mysql

Java:inserte varias filas en MySQL con PreparedStatement

Puede crear un lote mediante PreparedStatement#addBatch() y ejecútelo con PreparedStatement#executeBatch() .

Aquí hay un ejemplo de lanzamiento:

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.
            }
        }
    }
}

Se ejecuta cada 1000 elementos porque algunos controladores JDBC y/o bases de datos pueden tener una limitación en la longitud del lote.

Ver también :