Posted By:
Christopher_Schultz
Posted On:
Friday, September 20, 2002 06:37 AM
If you have your character set currectly configured and a JDBC driver that works well (perhaps Oracle?) you might be able to just use
ResultSet.getString("column_name") and be okay.
If that does not work, you may have to get each column value as a byte[] and construct a new String object and specify the encoding.
-chris