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