Hi, I am with a problem reading data from Oracle database, some words have
accent, but when i read the data it returns a wrong word. I am using OCCI
libs with c++.
like: In the database the data is: *aucão*
**
But the string read is : auc?o
The code to read is:
/**************************************************************/
string result;
try{
result = grs->getString(col);
*uiLen = result.length();
if( *uiLen > uiBufferLen){
return 2;
}
}...
/**************************************************************/
Someone can help me ?
Thanks by now!
[Non-text portions of this message have been removed]