Subject Character set on MacOSX
Author paxitdk
I am developing an application to be used both on MacOSX and Windows.
Initially I had problems with the encoding on Mac, because national
characters did not display correctly. Then I got help from Roman, who
has developed Jaybird and got everything to work OK. Suddenly the
solution does not work any more???

This is the connection from the app.:

db.setConnection(new ConnectionDescriptor(
"jdbc:firebirdsql:192.168.0.6:C:\\Data\\DB\\PRODUCTION.FDB",
"sysdba", null, true, "org.firebirdsql.jdbc.FBDriver",
ConnectionDescriptor.arrayToProperties(new String[][] {
{"encoding", "NONE"}, {"charset", "ISO8859_1"},})));

The database is created with ISO8859_1 as default. I have also tried
with NONE, and the output is unchanged on both platforms.

Can this be caused by a security update of JRE or MacOSX, which I have
run in the meantime?

Peder Skånning