Hello,
Can't anybody help to figure out what i'm doing wrong:
I have Informix SE database with DB_LOCALE = ru_ru.915
Connecting to it from windows using JDBC 3.50 JC5, connection code is:
Properties prop=new Properties();
prop.setProperty("DB_LOCALE","ru_ru.915");
prop.setProperty("CLIENT_LOCALE","ru_ru.57372");
prop.setProperty("user","user");
prop.setProperty("password","pass");
String url = "jdbc:informix-sqli://192.168.0.1:1526/mydb:informixserver=srv_remote";
conn = DriverManager.getConnection(url, prop);
Connection is ok, and i can select data. But all character data is in ISO-8859-5 (915) encoding(i'm converting it localy from ISO to UTF and see correct strings...). I tried to change DB_LOCALE & CLIENT_LOCALE to other locales - nothing happens...
