Question on charset used to write data in Prepared statement
Hi,
I am writing to an Oracle database using a thin JDBC connection.
I have data in Unicode which I attach to a PreparedStatement using .setString or setAsciiStream(). As far as I can see the second one if deprecated.
The database is not using Unicode - how do I control the Charset used (ie ISO8859_1) or is it automatically determined from the database?
Thanks for any ideas.
MArk

