일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 공부
- 무결성 제약조건
- 오류모음
- 백준문제
- 환경설정
- 순환문
- 별 찍기
- ORA-02292
- 티스토리 블로그
- while
- 이클립스
- 깃허브 블로그
- MSI
- 인터페이스
- 오류
- 스프링
- 오라클
- 이클립스단축기
- 전화번호부
- Ajax
- jsp
- 백준문제풀이
- 설정
- 백준
- for문
- Oracle
- ORA-01407
- 파워서플라이
- spring
- 자바
Archives
- Today
- Total
danDevlog
### Error querying database. Cause: org.apache.ibatis.executor.result.ResultMapException: Error attempting to get column '컬럼명' from result set. 본문
오류 및 편의성 모음
### Error querying database. Cause: org.apache.ibatis.executor.result.ResultMapException: Error attempting to get column '컬럼명' from result set.
단데기이 2022. 5. 26. 11:11728x90
### Error querying database. Cause: org.apache.ibatis.executor.result.ResultMapException: Error attempting to get column 'AUTHORINTRO' from result set. Cause: java.sql.SQLException: 부적합한 열 유형: getCLOB not implemented for class oracle.jdbc.driver.T4CLongAccessor
### The error may exist in com/myport/mapper/AuthorMapper.xml
### The error may involve com.myport.mapper.AuthorMapper.authorGetDetail
### The error occurred while handling results
### SQL: select * from book_author where authorId = ?
### Cause: org.apache.ibatis.executor.result.ResultMapException: Error attempting to get column 'AUTHORINTRO' from result set. Cause: java.sql.SQLException: 부적합한 열 유형: getCLOB not implemented for class oracle.jdbc.driver.T4CLongAccessor]을(를) 발생시켰습니다.
java.sql.SQLException: 부적합한 열 유형: getCLOB not implemented for class oracle.jdbc.driver.T4CLongAccessor
해당오류는 게시판의 content의 해당하는 열 부분인데 타입을 Long으로 지정해둬서 생긴 오류이다.
따라서 varchar2(2000)으로 변경한 결과 오류없이 실행되었다.
'오류 및 편의성 모음' 카테고리의 다른 글
Comments