이야기앱 세상
iBatis 사용시 CLOB 데이터가 출력되지 않을 때 본문
Oracle 10g를 사용할 때 iBatis를 이용해 CLOB 데이터의 insert를 정상적으로 처리되는데 select할 때 값을 읽어 오지 못 한다면
1) SqlMapConfig.xml 에 아래와 같이 추가(생략가능)
<property name="Driver.SetBigStringTryClob" value="true" />
2) 맵핑되는 xml 파일의 resultMap 태그에 아래와 같이 추가
<resultMap id="BoardResult" class="Board" >
<result property="seq" column="seq" columnIndex="1"/>
<result property="writer" column="writer" columnIndex="2"/>
<result property="title" column="title" columnIndex="3"/>
<result property="content" column="content" columnIndex="4" jdbcType="CLOB" javaType="java.lang.String" />
<result property="pwd" column="pwd" columnIndex="5"/>
<result property="hit" column="hit" columnIndex="6"/>
<result property="regdate" column="regdate" columnIndex="7"/>
<result property="filename" column="filename" columnIndex="8"/>
'IT > JSP' 카테고리의 다른 글
iBatis에서 null parameter 오류 발생시 해결 방법 (0) | 2016.03.23 |
---|---|
iBatis에서 null 데이터 select 처리 (0) | 2016.03.23 |
Oracle, Mysql, MS SQL JDBC 설정 (0) | 2016.03.23 |
HTTP 헤더 (0) | 2016.03.23 |
자카르타 DBCP API와 JNDI를 이용한 커넥션 풀 사용하기 (2) | 2016.03.23 |