Page 1 of 1

National characters in field name problem in 9.1.3

Posted: Mon 30 Sep 2013 14:42
by AdamKG
Hello,

Code: Select all

select 'Test' bad_ł_name from dual
Works in Delphi 2007 and doesn't in XE3. In XE3 I got parser error both design and runtime.

Is there workaroud for this?

Re: National characters in field name problem in 9.1.3

Posted: Tue 01 Oct 2013 09:23
by AlexP
Hello,

To make such query work, you should set the UseUnicode option and OCIUnicode (declared in OraCall) to True

Code: Select all

uses ..., OraCall;
....
OCIUnicode := true;
OraSession1.Options.UseUnicode := True;
OraSession1.Connect;