블로그 이미지
다엄
잘해야지

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

    'Programming/Java'에 해당되는 글 10

    1. 2010.07.15 java.sql.SQLException: Can not issue data manipulation statements with executeQuery()
    2010. 7. 15. 19:53 Programming/Java

    java.sql.SQLException: Can not issue data manipulation statements with executeQuery()
    이 황당한 에러는 executeUpdate()와 executeQuery()를 잘못썼을 때 발생한다.

    insert, update, delete 쿼리를 날릴 때는 executeUpdate() 함수를 사용한다.
    왜냐하면 결과 값이 없기 때문에.

    select 쿼리를 날릴 때는 executeQuery() 함수를 사용한다.
    왜냐하면 결과 값을 받아와야 하기 때문에.
    posted by 다엄