insert시 오류
- 작성자 :
- 허*
- 작성일 :
- 2013-10-08 14:33:42
- 조회수 :
- 9,523
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
insert시 다음과 같은 에러가 발생합니다. 어제까진 잘됬는데 갑자기 안되네요.
저부분을 수정하질 않았는데 갑자기 그러네요. 셋팅 부분이 바뀐건지...원인을 잘 모르겠습니다.
org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null]; error code [17004];
--- The error occurred in egovframework/sqlmap/fo/zz/zz03_sql.xml.
--- The error occurred while applying a parameter map.
--- Check the zz03.zz03_insertUser-InlineParameterMap.
--- Check the parameter mapping for the 'OFFC_TEL_NO' property.
--- Cause: java.sql.SQLException: Invalid column type; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException:
--- The error occurred in egovframework/sqlmap/fo/zz/zz03_sql.xml.
--- The error occurred while applying a parameter map.
--- Check the zz03.zz03_insertUser-InlineParameterMap.
--- Check the parameter mapping for the 'OFFC_TEL_NO' property.
--- Cause: java.sql.SQLException: Invalid column type
저부분을 수정하질 않았는데 갑자기 그러네요. 셋팅 부분이 바뀐건지...원인을 잘 모르겠습니다.
org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null]; error code [17004];
--- The error occurred in egovframework/sqlmap/fo/zz/zz03_sql.xml.
--- The error occurred while applying a parameter map.
--- Check the zz03.zz03_insertUser-InlineParameterMap.
--- Check the parameter mapping for the 'OFFC_TEL_NO' property.
--- Cause: java.sql.SQLException: Invalid column type; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException:
--- The error occurred in egovframework/sqlmap/fo/zz/zz03_sql.xml.
--- The error occurred while applying a parameter map.
--- Check the zz03.zz03_insertUser-InlineParameterMap.
--- Check the parameter mapping for the 'OFFC_TEL_NO' property.
--- Cause: java.sql.SQLException: Invalid column type
A
안녕하세요. 표준프레임워크 센터입니다.
해당오류는 파라미터 값이 null 일 경우 발생하는 오류입니다.
오류 로그를 보면 egovframework/sqlmap/fo/zz/zz03_sql.xml 파일내 쿼리ID가 zz03.zz03_insertUser인 쿼리의 파라미터인 OFFC_TEL_NO가 null인 경우입니다.
이 경우 #OFFC_TEL_NO:VARCHAR:NO_ENTRY#와 같이 지정하셔서
파라미터 값이 null일 경우 setNull이 처리될 수 있도록 지정하시면 됩니다.
감사합니다.
해당오류는 파라미터 값이 null 일 경우 발생하는 오류입니다.
오류 로그를 보면 egovframework/sqlmap/fo/zz/zz03_sql.xml 파일내 쿼리ID가 zz03.zz03_insertUser인 쿼리의 파라미터인 OFFC_TEL_NO가 null인 경우입니다.
이 경우 #OFFC_TEL_NO:VARCHAR:NO_ENTRY#와 같이 지정하셔서
파라미터 값이 null일 경우 setNull이 처리될 수 있도록 지정하시면 됩니다.
감사합니다.