when I try to open a query with a field that is defined as bigint( 8 ), I got the error message "Débordement BCD".
The field has got for example the value 795114345.
I'm working with Delphi7, I tried with an old dll version and the newest 4.20 version and both make the same error.
I got the same problem on Oracle and the solution was :
Code: Select all
const
coEnableBCD = TSQLConnectionOption( 102 );
begin
FSQLConnection.Open;
FSQLConnection.SQLConnection.SetOption( coEnableBCD, Integer( False ) );
end;
What's the problem and how can I solve it ?
Thanks.