Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
iBatis에서 null parameter 오류 발생시 해결 방법 본문
iBatis를 이용해 데이터를 삽입할 때 null parameter에 대해 아래와 같은 에러 메시지가 만들어지고 데이터베이스에 저장되지 않는 현상이 일어날 때 처리 방법
Cause: org.apache.ibatis.type.TypeException: Error setting null parameter. Most JDBC drivers require that the JdbcType must be specified for all nullable parameters. Cause: java.sql.SQLException: 부적합한 열 유형
<insert id="insertBoard" parameterClass="Board">
INSERT INTO board (
seq,
writer,
title,
content,
passwd,
regdate,
filename )
VALUES (
board_seq.nextval,
#writer#,
#title#,
#content#,
#pwd#,
sysdate,
#filename:VARCHAR#) <- null을 허용하려면 :VARCHAR 추가
</insert>
반응형
'IT > JSP' 카테고리의 다른 글
MyBatis 사용시 null parameter 에러 발생시 처리 (0) | 2016.03.23 |
---|---|
MyBatis 사용시 CLOB 데이터가 출력되지 않을 때 (0) | 2016.03.23 |
iBatis에서 null 데이터 select 처리 (0) | 2016.03.23 |
iBatis 사용시 CLOB 데이터가 출력되지 않을 때 (0) | 2016.03.23 |
Oracle, Mysql, MS SQL JDBC 설정 (0) | 2016.03.23 |
Comments