> Yes, with iSQL*Plus all characters are OK- Hide quoted text -
>
> - Show quoted text -
Frank,
iSQL*Plus uses IE browser to set chars.
Can you try with SqlPlus: the command line version:
From Windows cmd box:
Type: sqlplus /nolog
and then
conn <user>/<pwd>@<tnsalias>
and
your select statement.
AFAIK VO ODBC SQL classes don't convert characters.
(at least the version I know... very old one.)
ODBC uses Oracle OCI dll (Oracle native connection).
Character Conversion depends on 2 things:
1. Oracle server character set :
SELECT * FROM NLS_DATABASE_PARAMETERS
look for NLS_CHARACTERSET.
Example: AL32UTF8
2. Oracle client setting on the connecting machine:
In registry go to: HKEY_LOCAL_MACHINE > SOFTWARE > ORACLE >
Key..home..
Look at entry called NLS_LANG, second part indicates a character set.
Example: AMERICAN_AMERICA.AL32UTF8
It character set is not the same it does conversion.
HTH
Thomas