Javaを使用して、複数の行をMySQLテーブルに一度に挿入したい。行の数は動的です。過去に私はやっていた...
for (String element : array) {
myStatement.setString(1, element[0]);
myStatement.setString(2, element[1]);
myStatement.executeUpdate();
}
MySQLがサポートする構文を使用するようにこれを最適化したい:
INSERT INTO table (col1, col2) VALUES ('val1', 'val2'), ('val1', 'val2')[, ...]
しかし、PreparedStatement
では、array
に含まれる要素の数が事前にわからないため、これを行う方法がわかりません。 PreparedStatement
では不可能な場合、どうすればそれができますか(そして、配列の値をエスケープしますか)?
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アイテムごとに実行されます。
以下も参照してください:
MySQLドライバーを使用する場合、接続パラメーターrewriteBatchedStatements
をtrue ( jdbc:mysql://localhost:3306/TestDB?**rewriteBatchedStatements=true**)
に設定する必要があります。
このパラメーターを使用すると、テーブルが1回だけロックされ、インデックスが1回だけ更新されると、ステートメントが一括挿入に書き換えられます。そのため、はるかに高速です。
このパラメーターを使用しないと、ソースコードが簡潔になります。
Sqlステートメントを動的に作成できる場合、次の回避策を実行できます。
String myArray[][] = { { "1-1", "1-2" }, { "2-1", "2-2" },
{ "3-1", "3-2" } };
StringBuffer mySql = new StringBuffer(
"insert into MyTable (col1, col2) values (?, ?)");
for (int i = 0; i < myArray.length - 1; i++) {
mySql.append(", (?, ?)");
}
myStatement = myConnection.prepareStatement(mySql.toString());
for (int i = 0; i < myArray.length; i++) {
myStatement.setString(i, myArray[i][1]);
myStatement.setString(i, myArray[i][2]);
}
myStatement.executeUpdate();
テーブルに自動インクリメントがあり、それにアクセスする必要がある場合は、次のアプローチを使用できます。以下のコードは、Maria DB 10.0.12およびMaria JDBCドライバー1.2でテストされています
バッチサイズを大きくしてもパフォーマンスはある程度しか向上しないことに注意してください。私のセットアップでは、バッチサイズを500を超えると実際にパフォーマンスが低下します。
public Connection getConnection(boolean autoCommit) throws SQLException {
Connection conn = dataSource.getConnection();
conn.setAutoCommit(autoCommit);
return conn;
}
private void testBatchInsert(int count, int maxBatchSize) {
String querySql = "insert into batch_test(keyword) values(?)";
try {
Connection connection = getConnection(false);
PreparedStatement pstmt = null;
ResultSet rs = null;
boolean success = true;
int[] executeResult = null;
try {
pstmt = connection.prepareStatement(querySql, Statement.RETURN_GENERATED_KEYS);
for (int i = 0; i < count; i++) {
pstmt.setString(1, UUID.randomUUID().toString());
pstmt.addBatch();
if ((i + 1) % maxBatchSize == 0 || (i + 1) == count) {
executeResult = pstmt.executeBatch();
}
}
ResultSet ids = pstmt.getGeneratedKeys();
for (int i = 0; i < executeResult.length; i++) {
ids.next();
if (executeResult[i] == 1) {
System.out.println("Execute Result: " + i + ", Update Count: " + executeResult[i] + ", id: "
+ ids.getLong(1));
}
}
} catch (Exception e) {
e.printStackTrace();
success = false;
} finally {
if (rs != null) {
rs.close();
}
if (pstmt != null) {
pstmt.close();
}
if (connection != null) {
if (success) {
connection.commit();
} else {
connection.rollback();
}
connection.close();
}
}
} catch (SQLException e) {
e.printStackTrace();
}
}
@ALi Shakibaには、コードの変更が必要です。エラー部分:
for (int i = 0; i < myArray.length; i++) {
myStatement.setString(i, myArray[i][1]);
myStatement.setString(i, myArray[i][2]);
}
更新されたコード:
String myArray[][] = {
{"1-1", "1-2"},
{"2-1", "2-2"},
{"3-1", "3-2"}
};
StringBuffer mySql = new StringBuffer("insert into MyTable (col1, col2) values (?, ?)");
for (int i = 0; i < myArray.length - 1; i++) {
mySql.append(", (?, ?)");
}
mysql.append(";"); //also add the terminator at the end of sql statement
myStatement = myConnection.prepareStatement(mySql.toString());
for (int i = 0; i < myArray.length; i++) {
myStatement.setString((2 * i) + 1, myArray[i][1]);
myStatement.setString((2 * i) + 2, myArray[i][2]);
}
myStatement.executeUpdate();
jDBCで複数の更新を一緒に送信して、バッチ更新を送信できます。
自動コミットを無効にして、bacthの更新にStatement、PreparedStatement、CallableStatementオブジェクトを使用できます。
addBatch()およびexecuteBatch()関数は、BatchUpdateを持つすべてのステートメントオブジェクトで使用できます
ここでaddBatch()メソッドは、一連のステートメントまたはパラメーターを現在のバッチに追加します。