PL/SQL ! renurn of function into Delphi table of record HOW??

Lus

Member
how i can take table of record, which return function. Programming language are Delphi or c++ Builder + DOA
 
This is not directly possible. You could convert between a PL/SQL Table of a record type and several PL/SQL Tables of the corresponding scalar data types, but this is far from ideal.

If possible, you might consider using a collection object type.
 
If you can, give same example.
my record,table of record and function which return it.

type statisticREC is RECORD
(
FIO_ varchar2(20),
value_ number
);

type statisticMAS is table of statisticREC INDEX by binary_integer;

function Get_statistic return statisticMAS;
 
Back
Top