Puoi creare un batch tramite PreparedStatement#addBatch()
ed eseguilo con PreparedStatement#executeBatch()
.
Ecco un esempio di avvio:
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.
}
}
}
}
Viene eseguito ogni 1000 elementi perché alcuni driver e/o DB JDBC potrebbero avere una limitazione sulla lunghezza del batch.
Vedi anche :
- Tutorial JDBC - Utilizzo di PreparedStatement
- Tutorial JDBC - Utilizzo di Statement Object per aggiornamenti batch