Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Java:insira várias linhas no MySQL com PreparedStatement


Você pode criar um lote PreparedStatement#addBatch() e execute-o por PreparedStatement#executeBatch() .

Aqui está um exemplo de pontapé inicial:
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.
            }
        }
    }
}

Ele é executado a cada 1.000 itens porque alguns drivers JDBC e/ou bancos de dados podem ter uma limitação no tamanho do lote.

Veja também :