Using C++ builder XE6, odac 9.5.15, oracle 11.2.0.3.12 EE.
I encounter a bug. To reproduce: drop a TOraSession on a form, change options: UseUnicode=true, and connect it direct mode to the database.
Then drop a TOraQuery with the following text as query:
Code: Select all
SELECT 1 as "durée" FROM DUAL
However, it works in non-direct mode.
Also:
Code: Select all
SELECT 1 as "durée de temps" FROM DUAL
Code: Select all
SELECT 1 as "duree" FROM DUAL
So when UseUnicode is true, and a select ... as "xxx" is used, it fails if xxx holds a string holding an accentuated character and no space.