Q&A

  • 인터베이스에서 Query Open시 에러가 발생합니다.
인터베이스에서 테이블을 만들고 insert into로 데이터를 넣은다음 Query를 하려고 하면

arithmetic exception, numeric overflow, or string truncatation cannot transliterate character between character sets 라는 에러가 난 다음에 쿼리가 오픈 되는데 어떨때 이런 에러가 나는지 궁금해서요.. Char로 선언한 필드의 크기를 늘려도 에러가 나더라구요.. 인터베이스를 처음 사용해서 아직 좀 미숙합니다. 제가 사용하는 인터베이스 버전은 5.5구요.. 고수님들의 조언 부탁드릴께요.. 왜 이런 에러가 나는지..



1  COMMENTS
  • Profile
    허춘 2000.11.14 09:01
    유종근 wrote:

    > 인터베이스에서 테이블을 만들고 insert into로 데이터를 넣은다음 Query를 하려고 하면

    > arithmetic exception, numeric overflow, or string truncatation cannot transliterate character between character sets 라는 에러가 난 다음에 쿼리가 오픈 되는데 어떨때 이런 에러가 나는지 궁금해서요.. Char로 선언한 필드의 크기를 늘려도 에러가 나더라구요.. 인터베이스를 처음 사용해서 아직 좀 미숙합니다. 제가 사용하는 인터베이스 버전은 5.5구요.. 고수님들의 조언 부탁드릴께요.. 왜 이런 에러가 나는지..

    >

    looks like you are trying to put longer value then you define in your db.

    ex) testfield numeric(6,3) and if you're trying to add 12345678.123

    you'll get such message.