user471011
user471011

Reputation: 7364

connect to Oracle db with JDBC driver. How set charSet?

I need connect to Oracle database use jdbc driver. I look on structure URL string to connect and not see, where i xan set charSet to connect. Help me please.

Upvotes: 2

Views: 7466

Answers (1)

Justin Cave
Justin Cave

Reputation: 231651

You shouldn't need to set the character set. Java uses Unicode internally and the data from the database should be converted from the database character set to UTF-16 by the JDBC driver.

Upvotes: 1

Related Questions