일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 전체
- 다운캐스팅
- 상속예제
- 가변인자
- 페이징
- IBatis procedure
- Login with OAuth Authentication
- angular2
- 상속
- 스프링
- 형변환
- 자바
- 전자정부
- jquery
- 25가지 효율적인 sql작성법
- Random
- 전체텍스트
- while
- 야구게임
- full text indexing
- 추상클래스
- 자바 야구게임
- 다형성
- 업캐스팅
- Full text
- 로또
- 이클립스
- Validations
- 단축키
Archives
- Today
- Total
nalaolla
ibatis 또는 mybatis를 통하여 취한 oracle CLOB데이터를 String으로 풀기 본문
728x90
반응형
ibatis 또는 mybatis를 통하여 취한 oracle CLOB데이터를 String으로 풀기
List list = sqlClientAssists.queryForList(vsSqlXmlFileName, vsQueryId, voParamMap);
// 대상 list를 모두 참조하면서
for (Object object : list) {
// map으로 캐스팅
Map<String, Object> map = (Map<String, Object>) object;
// 해당 map안의 CLOB형 객체를 취득하고
CLOB clob = (CLOB) map.get("MY_CLOB");
// reader를 생성
Reader reader = clob.getCharacterStream();
StringBuffer out = new StringBuffer();
char[] buff = new char[1024];
int nchars = 0;
// 스트링 버퍼에 append 시킨후
while ((nchars = reader.read(buff)) > 0) {
out.append(buff, 0, nchars);
}
// String형태로 재할당.
map.put("MY_CLOB", out.toString());
}
728x90
반응형
'MyBatis' 카테고리의 다른 글
INSERT 후 시퀀스값 SELECT하기(MySQL,MS-SQL,ORACLE) (0) | 2016.04.04 |
---|---|
myBatis 파라미터 바인딩시 주의점 (0) | 2016.03.28 |
parameterType HashMap 관련 예시(다중파라미터) (0) | 2016.03.27 |
마이바티스(MyBatis) 쿼리 로그 출력 및 정렬하기 (0) | 2016.03.27 |
프로시저 호출하기(오라클, SqlServer) (0) | 2016.03.26 |