Java:使用PreparedStatement在MySQL中插入多行
我想使用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
,我还能怎么做(并且仍然逃避数组中的值)?
holdtom
当年话下
相关分类