Russian charset causes problems in DIRECT mode...
Posted: Tue 06 Oct 2009 02:44
Russian charset causes problems in DIRECT mode when working with UNICODE
hello,
I develop a program that connect to Oracle10g database and select data from tables in the Russian encoding.
I'm using ODAC 6.90.0.51 and C++ Builder 6.0
If set OraSession1->Options->Charset parametrs, the program will not start. In this case no mistakes.
If Charset not set, the program works, but request with the data encoded in Russian are not processed
How can I remove this problem.
Would you guide me ?
Thanks
hello,
I develop a program that connect to Oracle10g database and select data from tables in the Russian encoding.
I'm using ODAC 6.90.0.51 and C++ Builder 6.0
Code: Select all
OraSession1->LoginPrompt = false;
OraSession1->Username = userName;
OraSession1->Password = userPassword;
OraSession1->Server = oraServer;
OraSession1->Options->Direct = true;
OraSession1->Options->UseUnicode = true;
OraSession1->Options->Charset="RU8PC866";
OraSession1->Connect();If Charset not set, the program works, but request with the data encoded in Russian are not processed
How can I remove this problem.
Would you guide me ?
Thanks