DCCoolBreeze
Programmer
I have a collection of records that I want to initialize. It looks something like this
TYPE rRecords IS RECORD (
vVar1 varchar2(10),
cVar2 varchar2(10)
);
TYPE raRecords is VARRAY(2) OF rRecords;
rrr raRecords := raRecords(???);
Is it possible and if so how can it be done????
Help!
TYPE rRecords IS RECORD (
vVar1 varchar2(10),
cVar2 varchar2(10)
);
TYPE raRecords is VARRAY(2) OF rRecords;
rrr raRecords := raRecords(???);
Is it possible and if so how can it be done????
Help!