VARRAY is varying array type that is typically used
when the number of instances to be stored is small. It has a set of data
elements and all are of the same data type. The size of VARRAY determines the
number of elements.
Example:
Defining a VARRAY object
CREATE OR REPLACE TYPE ProjectList AS VARRAY(50) OF Project;
Defining a VARRAY object
CREATE OR REPLACE TYPE ProjectList AS VARRAY(50) OF Project;
No comments:
Post a Comment