이클립스 - 오라클 쿼리 오류(ORA-01747: invalid user.table.column, table.column, or column specification)
Back-End/Problems 2019. 5. 26. 13:18이클립스 - 오라클 쿼리 오류
junganjava.sql.SQLSyntaxErrorException: ORA-01747: invalid user.table.column, table.column, or column specification
쿼리 부분에 오타가 있거나, 컬럼 및 테이블명이 정확하지 않아서 발생 하는 오류.
1 2 3 4 5 6 7 8 | getCon(); try { String sql = "update board set subject=?,content=? where num=?"; //쿼리사용시 오류가 발생하면 데이터베이스에서 한번 사용해보고 문법적인 오류가 없는지 확인 pstmt = con.prepareStatement(sql); //?에 값을 대입한다. pstmt.setString(1, subject); pstmt.setString(2, content); pstmt.setInt(3, num); | cs |
출처
'Back-End > Problems' 카테고리의 다른 글
STS4 http 500 에러 (0) | 2019.05.31 |
---|---|
Spring 에러 (The origin server did not find a current representation for the target resource or is not willing to disclose that one exists) (0) | 2019.05.27 |
JSP 페이지에서 JSTL 관련 에러 (HTTP 500) (0) | 2019.05.24 |
오라클 토드 관련 (ORA-00001) 에러 (0) | 2019.05.24 |
HTML <input type> 관련 (0) | 2019.05.19 |