Subject Re: JayBird: Linux and Umlauts
Author Roman Rokytskyy
> 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