Subject Re: [IBO] ISC Error Message
Author Helen Borrie
At 12:23 AM 23/01/2005 -0300, you wrote:

>Hi,
>
>I am using BCB6 and IBO 4.3AA with a Firebird 1.5 database.
>
>The program was working ok, but now I am getting a strange error code:
>
>ISC Error Code:335544321
>
>ISC ERROR MESSAGE:
>arithmetic exception, numeric overflow, or string truncation
>
>
>The only thing that I am doing is to activate some TIB_QUERY with
>corrects sql statements that are previously working and I test it with
>IBExpert.
>
>My question is why I get this strange error?
>
>Any help? any idea?

It is a run-time error that occurs when you have a data overflow. If it is
happening now and did not before - with the same data - then it is Fb 1.5's
greater strictness about overflows that is giving rise to it - a string
that is longer than 32,765 bytes? a string being written into a char or
varchar that is too small to receive it? a numeric or decimal type
resulting from a calculation that ends up with a greater scale than a
variable or column can accommodate? etc. etc.

Without knowing what exactly your app was trying to do at the time, one
could not be more exact about what to look for.

Helen