Will be you added support Associative Arrays of REF in next build of ODAC.

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
geophysic
Posts: 3
Joined: Thu 21 Sep 2006 07:35

Will be you added support Associative Arrays of REF in next build of ODAC.

Post by geophysic » Mon 25 Sep 2006 15:00

Will be you added support Associative Arrays of REF in next build of ODAC.

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Wed 27 Sep 2006 11:26

ODAC components cannot have parameters of associative array type. You can create individual parameters for each array element. For example, you can use following PL/SQL block in TOraQuery:

declare
p_arr my_pack.my_array;
begin
p_arr := my_pack.f_get();
:a1 := p_arr(1);
:a2 := p_arr(2);
:a3 := p_arr(3);
end;

Post Reply