Unidac Oracle charset Problem.

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
wbjsoft
Posts: 24
Joined: Tue 08 Aug 2006 00:38

Unidac Oracle charset Problem.

Post by wbjsoft » Mon 29 Aug 2011 05:50

I use oracle server charset - US7ASCII with korean.
It works well with UniConnection.SpecificOptions.Values['Charset']
:= 'US7ASCII'

but not work with these situations.
client side query,
clientdataset1.commandtext := 'update table1 set field1 = :field1 ';
clientdataset1.params.parambyname('field1').AsString = '한글';
clientdataset1.execute;
after executing , field1 = '????'

and it dosen't work with CLOB

when I used your DBExpress Driver Oracle, It works well. I think.

but it dosen't work after migration to UniDac.

thank you.

Post Reply