Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Java:Fügen Sie mit PreparedStatement mehrere Zeilen in MySQL ein

Sie können einen Stapel mit PreparedStatement#addBatch() und führen Sie es durch aus PreparedStatement#executeBatch() .

Hier ist ein Kickoff-Beispiel:

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

Es wird alle 1000 Elemente ausgeführt, da einige JDBC-Treiber und/oder DBs möglicherweise eine Begrenzung der Stapellänge haben.

Siehe auch :