헤르메스 LIFE

[Exception] com.ibatis.common.jdbc.exception.NestedSQLException 본문

Exception

[Exception] com.ibatis.common.jdbc.exception.NestedSQLException

헤르메스의날개 2010. 8. 9. 14:27
728x90
iBatis를 사용할 때 발생하는 Exception입니다.
뭐~ 워낙 많이 발생하는 Exception이고, 경우의 수도 많습니다.

경우 1.

com.ibatis.common.jdbc.exception.NestedSQLException:  
--- The error occurred while applying a parameter map. 
--- Check the catalog-sql.catalogSrch-InlineParameterMap. 
--- Check the statement (query failed). 
--- Cause: java.sql.SQLException: ORA-00923: FROM 키워드가 필요한 위치에 없습니다.

 해결책 -

쿼리를 생성할 때 Oracle의 일반적인 주석은 '--'를 사용합니다.

하지만 iBatis의 주석은 /**/ 입니다.

 '--'를 /**/ 바꾸세요.

728x90