LIST.GETITEM
built-in functionThis function retrieves an item from a list.
FUNCTION LIST.GETITEM
(list Listofchar,
pos PLS_INTEGER)
RETURN VARCHAR2;
Parameter |
Description |
|
The name of an existing list. |
|
A position (base equals 0). |
An item from the specified list.
/*
** Retrieve and print out the second item
** in my_List
*/
TEXT_IO.PUT_LINE(List.Getitem(my_List, 1));
About the LIST
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.