LIST.DELETEITEM
built-in procedureThis procedure deletes the item at the specified position in a list.
PROCEDURE LIST.DELETEITEM
(list Listofchar),
pos PLS_INTEGER);
Parameter |
Description |
|
The name of an existing list. |
|
A position (base equals 0). |
/*
** Delete the third item from 'my_List'
*/
LIST.DELETEITEM(my_package.my_List, 2));
About the LIST
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.