Problem with Greek chars in Unidac 5.5

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
nickosl50
Posts: 3
Joined: Sat 22 Nov 2014 22:45

Problem with Greek chars in Unidac 5.5

Post by nickosl50 » Sun 23 Nov 2014 12:40

Hi, I downloaded Unidac 5.5 for use with Rad Studio XE6. Using a TUniCOnnection & TUNiQuery and trying to display an oracle xe table with Greek chars , it appears to be a problem with the display of string fields with Greek chars (don't display correctly). The same table using FireDac appears OK. Would you please tell me if I have to use some setting or something else.

Thank you very much

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: Problem with Greek chars in Unidac 5.5

Post by AlexP » Mon 24 Nov 2014 07:49

Hello,

Try setting the UseUnicode and UnicodeEnvironment options to true :

Code: Select all

  UniConnection1.SpecificOptions.Values['UseUnicode'] := 'true';
  UniConnection1.SpecificOptions.Values['UnicodeEnvironment'] := 'true';

nickosl50
Posts: 3
Joined: Sat 22 Nov 2014 22:45

Re: Problem with Greek chars in Unidac 5.5

Post by nickosl50 » Tue 25 Nov 2014 14:40

That solved the problem.Thank you very much for your help.

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: Problem with Greek chars in Unidac 5.5

Post by AlexP » Wed 26 Nov 2014 06:40

Glad to see that the issue was resolved. If you have any further questions, feel free to contact us.

Post Reply