| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> PL/SQL V8 Records in Varray
Hi,
Is there a way to initialize a Varray of Records with its constructor.
DECLARE
TYPE Person IS RECORD (
name VARCHAR2(20),
age NUMBER(3)) ;
TYPE Audience IS VARRAY (100) OF Person ;
Opera Audience := Audience ( ???? );
BEGIN
DBMS_OUTPUT.PUT_LINE (Opera(1).name) ;
...
![]() |
![]() |