2009년 6월 28일 일요일

PreparedStatement 재사용

StringBuffer sql = new StringBuffer(" INSERT INTO poll (col1, col2 ) VALUES (?, ?) ");

1)
for(int i = 0; i<5; i++) {
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();

댓글 없음:

댓글 쓰기