Hi all,
I use firebird as database and have problems when I save something with german specific letters like umlauts. The following exception occurred:
Code:
org.firebirdsql.jdbc.FBSQLException: GDS Exception. arithmetic exception, numeric overflow, or string truncation
Cannot transliterate character between character sets
I tried something to solve this problem, for example:
1. used system property -Dfile.encoding=ISO-8859-1
2. set a specific firebird property to Configuration:
Code:
Configuration cfg = new Configuration();
cfg.setProperty("lc_ctype", "ISO8859_1");
But all this doesn't helped.
The database table's itself are created with a charset of ISO-8859-1 and I have no problems to add data with german umlauts in a database tool like IBExpert.
Has anybody an idea ?
Thanks in forward
Rico