Previous |
Next |
Use this procedure to delete a specified member from a given named collection. If the named collection does not exist for the same user in the current session for the current Application ID, an application error is raised.
Syntax
APEX_COLLECTION.DELETE_MEMBER ( p_collection_name IN VARCHAR2, p_seq IN VARCHAR2);
Parameters
Table: DELETE_MEMBER Parameters describes the parameters available in the DELETE_MEMBER
procedure.
DELETE_MEMBER Parameters
Parameter | Description |
---|---|
|
The name of the collection to delete the specified member from. The maximum length is 255 characters. Collection names are not case sensitive and are converted to upper case. An error is returned if this collection does not exist for the current user in the same session. |
|
This is the sequence ID of the collection member to be deleted. |
Example
This example shows how to use the DELETE_MEMBER
procedure to remove the member with a sequence ID of '2' from the collection named EMPLOYEES
.
Begin APEX_COLLECTION.DELETE_MEMBER( p_collection_name => 'EMPLOYEES', p_seq => '2'); End;