ADELIA |
VADELIA |
SADELIA |
WADELIA |
MADELIA |
(I/B) |
(I/B) (C/S) |
(B) (S) |
(I/B) (C/S) |
(I) (C/S) |
Section for use
All.
Syntax
XML_SELECT_NEXT XmlIdentifierXml
Description
Positions to the next element in the node selection produced by the most recent execution of the XML_SELECT instruction for XmlIdentifierName.
When this instruction is executed, the *RETURN_CODE reserved word can take the following values:
0 (*NORMAL) |
Positioned correctly at a node. |
100 (*NOT_FOUND) |
End of selection reached. |
13 |
Error: XML identifier not open. |
Example
XML_SELECT xml1 /AdelDBG/PgmInfo/Dlls/Dll
DO_WHILE *RETURN_CODE = *NORMAL
XML_GET_VAL xml1 *TEXT WNAME_DLL
INSERT_ELT LIST_DLL
XML_SELECT_NEXT xml1
REDO