Home > Advanced Programming Techni... > Using Collections > About the APEX_COLLECT...
Every collection contains a named list of data elements (or members) which can have up to 50 character attributes (VARCHAR2(4000)
), and one large character attribute (CLOB
). You insert, update, and delete collection information using the PL/SQL API APEX_COLLECTION
.
When you create a new collection, you must give it a name that cannot exceed 255 characters. Note that collection names are not case-sensitive and will be converted to uppercase.
Once the collection is named, you can access the values in the collection by running a SQL query against the view APEX_COLLECTIONS
.