Subject Re: fetch Problem
Author rrokytskyy
Hi,

> I get this exception when reading data, what can be done to fix
> this problem?
>
> java.sql.SQLException: fetch problem:
> org.firebirdsql.gds.GDSException: arithmetic exception, numeric
> overflow, or string truncation Cannot transliterate character
> between character sets at

This means, that the character set you specified on connecting to the
database (well, you might haven't, but driver selected by the default
ISO8859_1) does not match the encoding used for column definition and
InterBase/Firebird is not able to perform conversion. So, you either
add your encoding to the connection parameters using the
FBWrappingDataSource.setConnectionRequestInfo(...), or edit the
FBManagedConnectionFactory constructor to include your encoding, or
wait couple of days until I finish code that will allow you to
specify the character encoding in the connection parameters.

Best regards,
Roman Rokytskyy