<でバッチを作成できます。 code> PreparedStatement#addBatch()
で実行します。 PreparedStatement#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.
}
}
}
}
一部のJDBCドライバーやDBにはバッチ長に制限がある場合があるため、1000アイテムごとに実行されます。
関連項目 :