我想使用 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
将包含多少元素。如果 a 不可能PreparedStatement
,我还能怎么做(并且仍然转义数组中的值)?