2013-04-10 22:43:41 -07:00
|
|
|
DECLARE
|
2015-02-20 00:35:01 -05:00
|
|
|
type ThisIsNotAnAssocArrayType is record (
|
2013-04-10 22:43:41 -07:00
|
|
|
myShape VARCHAR2(20),
|
|
|
|
|
mySize number,
|
|
|
|
|
isActive BOOLEAN
|
|
|
|
|
);
|
2015-02-20 00:35:01 -05:00
|
|
|
assocArray ThisIsNotAnAssocArrayType ;
|
2013-04-10 22:43:41 -07:00
|
|
|
BEGIN
|
|
|
|
|
assocArray.myShape := 'circle';
|
|
|
|
|
|
|
|
|
|
dbms_output.put_line ('assocArray.myShape: ' || assocArray.myShape);
|
|
|
|
|
dbms_output.put_line ('assocArray.mySize: ' || assocArray.mySize);
|
|
|
|
|
END;
|
|
|
|
|
/
|