본문 바로가기
Error & Fix

ORA-03115: 지원되지 않은 네트워크 데이터 유형 또는 표현이 있습니다

by wakestand 2019. 10. 7.
반응형

JDBC Query Select를 Statement를 이용해서 수행하다

PreparedStatement로 바꾸는 과정에서 난 에러인데

 

pstmt.executeQuery(query)에서 괄호 안에 들어있는 query를 제거한

pstmt.executeQuery()로 괄호 안에 내용을 제거해 주니 해결이 되었다

 

Statement는

Statement stmt = conn.createStatement();

ResultSet rs = stmt.executeQuery(sql);

이런 식으로 사용하지만

 

PreparedStatement는

PrepareStatement pstmt = conn.prepareStatement(sql);

ResultSet rs = pstmt.executeQuery();

이런 식으로 사용하기 때문에 ORA-03115 에러가 뜬 것이었다

반응형

댓글