Nested Table Query using public synonym doesn't work...

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
gregoryliss
Posts: 13
Joined: Mon 19 Dec 2005 16:31

Nested Table Query using public synonym doesn't work...

Post by gregoryliss » Mon 26 Jul 2010 15:50

Setup info:

Code: Select all

CREATE OR REPLACE TYPE A__T AS OBJECT
(
NAME VARCHAR2(30),
area NUMBER
) ;

CREATE PUBLIC SYNONYM a_t FOR a__T;

CREATE OR REPLACE TYPE a_nt  
   AS TABLE OF a_t;
Execute the following:

Code: Select all

SELECT a_nt(a_t('LB',1),a_t('KG',100)) FROM dual; 
The above query works in SQL*Plus but not in ODAC.

bork
Devart Team
Posts: 649
Joined: Fri 12 Mar 2010 07:55

Post by bork » Tue 27 Jul 2010 11:02

Hello

We will investigate the possibility of adding this feature in one of the next builds/versions of ODAC.

Post Reply