1)
for(int i = 0; i<5; i++) {
psmt.setString(1, "test");
psmt.setString(2, "test");
psmt.executeUpdate();
psmt.clearParameters();
}
psmt.setString(1, "test");
psmt.setString(2, "test");
psmt.executeUpdate();
psmt.clearParameters();
}
2)
for(int i = 0; i<5; i++) {
psmt.setString(1, "test");
psmt.setString(2, "test");
psmt.addBatch();
}
psmt.executeBatch();
psmt.setString(1, "test");
psmt.setString(2, "test");
psmt.addBatch();
}
psmt.executeBatch();
댓글 없음:
댓글 쓰기