Background Image

FORUM

조회 수 47435 추천 수 0 댓글 1
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

* 질문 등록 시 다음의 내용을 꼭 기입하여 주세요.
OS
Window7 32bit, Linux 64bit 등
CUBRID Ver.
[cubrid_rel] 수행 결과
CUBRID TOOL Ver.
[도움말]-[버전정보] 확인
응용 환경(API)
java, php, odbc 등 입력

* CUBRID 응용 오류, SQL 오류 또는 SQL 튜닝 관련된 문의는 반드시 다음의 내용을 추가해 주세요. 비밀글이나 비밀 댓글도 가능합니다.
* 저희가 상황을 이해하고, 재현이 가능해야 알 수 있는 문제들이 많습니다. 가능한 정보/정황들을 부탁합니다.
에러 내용 및 재현 방법 재현 가능한 Source와 SQL
관련 테이블(인덱스, 키정보 포함) 정보 CUBRID 홈 디렉토리 아래 log 디렉토리 압축


-------------- 아래에 질문 사항을 기입해 주세요. ------------------------------------------------------------------------
전자정부표준프레임워크를 이용해서 이미지를 BLOB으로 저장할려 합니다.

context.xml

<bean id="lobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" lazy-init="true" />

<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">

<property name="configLocation" value="classpath:/egovframework/sqlmap/config/cubrid/sql-map-config-cubrid-cmm.xml"/>

<property name="configLocations">

<list><value>classpath:/egovframework/sqlmap/config/cubrid/*.xml</value> </list>

</property>

<property name="dataSource" ref="dataSource"/>

<property name="lobHandler" ref="lobHandler"/>

</bean>

sql-map-config.xml

<typeHandler callback="org.springframework.orm.ibatis.support.BlobByteArrayTypeHandler" jdbcType="BLOB" javaType="[B" />


controller

final MultipartFile file = multiRequest.getFile("mainImage");

byte[] b = FileCopyUtils.copyToByteArray(file.getInputStream());

commandMap.put("image", b);

commandMap.put("fileNm", file.getOriginalFilename());

//commandMap.put("image", file.getBytes());


쿼리는

INSERT 

 INTO  TM_COLLECTIONINFO

    (  MUSEUM_ID, 

IMAGE, 

EXHIBIT_FLAG, 

FILE_NM

    )

  ]]>

VALUES

    (  #ssmuseumId#, 

#collectId#, 

...


BIT_TO_BLOB(#image#),

#exhibitFlag#,

#fileNm#

    )


1. 이상태로 실행하면 저장은되나 쿼리브라우저로 확인하면 256b만 저장되어 이미지를 확인할수 없습니다

2. 쿼리에 BIT_TO_BLOB 은 맞는건지요?

BIT_TO_BLOB 이걸 빼고 실행하면 

--- The error occurred in egovframework/sqlmap/collregmng/reg/ArchiveDataReg/CollectionList_SQL.xml.  

--- The error occurred while applying a parameter map.  

--- Check the CollectionListInfo.insertCollectionInfo-InlineParameterMap.  

--- Check the statement (update failed).  

--- Cause: cubrid.jdbc.driver.CUBRIDException: CASID[1],CASPID[9316],SESSION[203079],URL[jdbc:cubrid:192.168.103.31:33000:archive:archive:********:?charset=utf-8]

Semantic: Cannot coerce host var to type blob. ]; SQL was [] for task [SqlMapClient operation]

이런 에러가 납니다


3. 쿼리 에서 이미지지 넣을때

#image:BLOB# 와 #image# 어떤게 맞는건지요..?

:BLOB를 넣으면 아래와 같은 에러가 납니다.


2013-10-23 16:41:22,466  INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]

2013-10-23 16:41:22,469 DEBUG [org.springframework.beans.factory.xml.DefaultDocumentLoader] Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]

2013-10-23 16:41:22,470 DEBUG [org.springframework.beans.factory.xml.BeansDtdResolver] Found beans DTD [http://www.springframework.org/dtd/spring-beans-2.0.dtd] in classpath: spring-beans-2.0.dtd

2013-10-23 16:41:22,473 DEBUG [org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader] Loading bean definitions

2013-10-23 16:41:22,491  INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] Loading XML bean definitions from class path resource [sql-error-codes.xml]

2013-10-23 16:41:22,492 DEBUG [org.springframework.beans.factory.xml.DefaultDocumentLoader] Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]

2013-10-23 16:41:22,493 DEBUG [org.springframework.beans.factory.xml.BeansDtdResolver] Found beans DTD [http://www.springframework.org/dtd/spring-beans-2.0.dtd] in classpath: spring-beans-2.0.dtd

2013-10-23 16:41:22,495 DEBUG [org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader] Loading bean definitions

2013-10-23 16:41:22,496  INFO [org.springframework.jdbc.support.SQLErrorCodesFactory] Found custom sql-error-codes.xml file at the root of the classpath

2013-10-23 16:41:22,499 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'DB2'

2013-10-23 16:41:22,499 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'DB2'

2013-10-23 16:41:22,500 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'DB2' to allow for resolving potential circular references

2013-10-23 16:41:22,505 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'DB2'

2013-10-23 16:41:22,505 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'Derby'

2013-10-23 16:41:22,505 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'Derby'

2013-10-23 16:41:22,505 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'Derby' to allow for resolving potential circular references

2013-10-23 16:41:22,506 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'Derby'

2013-10-23 16:41:22,506 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'H2'

2013-10-23 16:41:22,506 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'H2'

2013-10-23 16:41:22,506 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'H2' to allow for resolving potential circular references

2013-10-23 16:41:22,506 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'H2'

2013-10-23 16:41:22,506 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'HSQL'

2013-10-23 16:41:22,506 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'HSQL'

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'HSQL' to allow for resolving potential circular references

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'HSQL'

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'Informix'

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'Informix'

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'Informix' to allow for resolving potential circular references

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'Informix'

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'MS-SQL'

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'MS-SQL'

2013-10-23 16:41:22,507 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'MS-SQL' to allow for resolving potential circular references

2013-10-23 16:41:22,508 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'MS-SQL'

2013-10-23 16:41:22,508 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'MySQL'

2013-10-23 16:41:22,508 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'MySQL'

2013-10-23 16:41:22,508 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'MySQL' to allow for resolving potential circular references

2013-10-23 16:41:22,508 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'MySQL'

2013-10-23 16:41:22,508 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'Oracle'

2013-10-23 16:41:22,508 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'Oracle'

2013-10-23 16:41:22,509 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'Oracle' to allow for resolving potential circular references

2013-10-23 16:41:22,509 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'Oracle'

2013-10-23 16:41:22,509 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'PostgreSQL'

2013-10-23 16:41:22,509 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'PostgreSQL'

2013-10-23 16:41:22,509 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'PostgreSQL' to allow for resolving potential circular references

2013-10-23 16:41:22,517 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'PostgreSQL'

2013-10-23 16:41:22,517 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'Sybase'

2013-10-23 16:41:22,517 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'Sybase'

2013-10-23 16:41:22,517 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'Sybase' to allow for resolving potential circular references

2013-10-23 16:41:22,517 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'Sybase'

2013-10-23 16:41:22,547 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating shared instance of singleton bean 'CUBRID'

2013-10-23 16:41:22,547 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Creating instance of bean 'CUBRID'

2013-10-23 16:41:22,547 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Eagerly caching bean 'CUBRID' to allow for resolving potential circular references

2013-10-23 16:41:22,548 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Finished creating instance of bean 'CUBRID'

2013-10-23 16:41:22,551  INFO [org.springframework.jdbc.support.SQLErrorCodesFactory] SQLErrorCodes loaded: [DB2, Derby, H2, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase, CUBRID]

2013-10-23 16:41:22,551 DEBUG [org.springframework.jdbc.support.SQLErrorCodesFactory] Looking up default SQLErrorCodes for DataSource [org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy@de1520]

2013-10-23 16:41:22,557 DEBUG [org.springframework.jdbc.datasource.DataSourceUtils] Fetching JDBC Connection from DataSource

2013-10-23 16:41:22,557 DEBUG [org.springframework.jdbc.datasource.DataSourceUtils] Fetching JDBC Connection from DataSource

2013-10-23 16:41:22,650 DEBUG [org.springframework.jdbc.datasource.DataSourceUtils] Returning JDBC Connection to DataSource

2013-10-23 16:41:22,650 DEBUG [org.springframework.jdbc.datasource.DataSourceUtils] Returning JDBC Connection to DataSource

2013-10-23 16:41:22,650 DEBUG [org.springframework.jdbc.support.SQLErrorCodesFactory] Database product name cached for DataSource [org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy@de1520]: name is 'CUBRID'

2013-10-23 16:41:22,650 DEBUG [org.springframework.jdbc.support.SQLErrorCodesFactory] SQL error codes for 'CUBRID' found

2013-10-23 16:41:22,650 DEBUG [org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator] Unable to translate SQLException with Error code '0', will now try the fallback translator

2013-10-23 16:41:22,651 DEBUG [org.springframework.jdbc.datasource.DataSourceUtils] Returning JDBC Connection to DataSource


수많은 글을 찾아보고 여기도 다보앗습니다.

메뉴얼도 받지만 그걸로는 방식이 달라 참조를 못하겟습니다,,

전자정부표준프레임워크를 이용해서 blob으로 저장할수잇는 방법을 알려주세요.

 



List of Articles
번호 제목 글쓴이 날짜 조회 수
공지 SQLGate for CUBRID 영구 무료 라이선스 제공 file admin 2020.04.09 4443
927 뷰 테이블 편집 cascade 오류 1 초보 2010.03.06 11003
926 Cubrid 2008 R 1.3 설치중 에러메시지 3 동진 2009.03.23 11008
925 라이센스 관련 문의 입니다. 1 foxman 2011.01.25 11011
924 cubrid 8.4.3 loaddb 또는 대량데이터 일괄 Insert 방법 1 김상윤 2013.03.22 11018
923 트랙잭션이 시스템에 의해 중단됩니다. 1 김현성 2011.05.26 11019
922 대용량 mysql 데이타를 큐브리드 2008 로 마이그레이션 할때 1 초보 2010.01.27 11023
921 cubrid 설치 후 서버 기동 문제 3 너와나 2009.10.13 11025
920 JBoss 7.1.1 와 Cubird 9.3.6 버젼 연동 문의 file 뽀대남 2016.07.12 11058
919 Oracle --> Cubrid 쿼리 변경 질문입니다! 3 잘하자! 2016.06.01 11064
918 파티션 테이블에 대해서.. 1 알칸펠 2014.01.17 11067
917 The size of data received from server is different from the expected 2 사자 2011.01.21 11069
916 큐브리드 매니저에서 서브쿼리 날리면 값이 안나오는 문제 1 지니보이 2010.01.29 11071
915 CUBRID 공간데이터 타입 기대해도 되나요? 3 kladess 2011.11.19 11073
914 데이트타입 컬럼의 주를 구하는 함수는? 2 초보 2010.03.31 11081
913 cubrid_prepare 오류 질문드립니다 4 엠지 2012.05.17 11086
912 Oledb 문자열 값 가져오기 실패 문의입니다. 4 콩이아부지 2013.03.11 11088
911 윈도우 큐브리드 메니저로 리눅스 접속 3 노스 2010.09.14 11092
910 아카이브 로그 자동 삭제 및 볼륨 자동 생성 문의 1 소라게 2013.11.22 11105
909 linux demodb구동시 에러 1 시나브로 2013.09.12 11105
908 CUBRID 매니저 서버 연결 오류 3 file 지용 2009.09.09 11123
Board Pagination Prev 1 ... 149 150 151 152 153 154 155 156 157 158 ... 200 Next
/ 200

Contact Cubrid

대표전화 070-4077-2110 / 기술문의 070-4077-2113 / 영업문의 070-4077-2112 / Email. contact_at_cubrid.com
Contact Sales