标签: java mysql database prepared-statement
我有一个for循环,以便将值添加到PreparedStatement。该批次只有2万个条目,但性能不佳。
在循环的每次迭代中,我都会: statement.addBatch();
最后,我只是做: statement.executeBatch();
我还需要考虑其他因素吗?预先感谢