forked from plusone/plusone-commons
添加优化计划。
parent
bcf1a4e5a0
commit
05ce281128
|
@ -154,6 +154,7 @@ public class SimpleJdbcTemplate {
|
|||
for (Object[] ps : params) {
|
||||
i++;
|
||||
for (int j = 0; j < ps.length; j++) {
|
||||
// TODO 【优化】 参考 Spring JDBC 的 StatementCreatorUtils.setValue 方法,调用 PreparedStatement 不同的 setXxx 方法。
|
||||
stmt.setObject(j + 1, ps[j]);
|
||||
}
|
||||
stmt.addBatch();
|
||||
|
|
Loading…
Reference in New Issue