본문 바로가기

JAVA

executeBatch()메서드

기존에 쿼리문들을 statemene에 담아서 executeQuery()로 처리하다가

executeBatch()메서드를 보게돼서 찾아보았다.

statement.addBatch(buf.toString())으로 statement에 쿼리를 여러개 담아놓고

statement.executeBatch(); 로 한번에 실행시킨다.

말 그대로 일괄(batch)실행이었다.

쿼리를 반복해서 실행시키는 것보다 훨씬 효율이 좋다고 한다.

'JAVA' 카테고리의 다른 글

[JAVA] 큐 정렬하기 Queue<String> sorting  (0) 2020.12.01
JAR파일 MANIFEST.MF 수정  (0) 2020.11.06
[JAVA]renameTo()메서드  (0) 2019.08.09
[이클립스] 전체 파일 인코딩 한번에 변경하기  (0) 2019.08.08
matches()메서드  (0) 2019.08.07