Reputation: 7384
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: 7482
Reputation: 231801
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