Subject | Re: JayBird: Linux and Umlauts |
---|---|
Author | Roman Rokytskyy |
Post date | 2003-08-18T14:49:41Z |
> System.out.println(rs.getString(2));Try
System.out.println(new String(rs.getBytes(2), "Cp1252"));
It should print umlauts correctly (if they can be printed on your
system at all).
Roman