| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 깃허브 블로그
- Ajax
- 스프링
- 공부
- MSI
- 이클립스
- 무결성 제약조건
- 파워서플라이
- 자바
- Oracle
- for문
- jsp
- 오류모음
- 인터페이스
- 티스토리 블로그
- while
- 이클립스단축기
- 오류
- 환경설정
- 설정
- 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