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.
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.
精彩评论