XML_OPEN
Argument | Enumeration | Purpose |
---|---|---|
file$ | Name of XML file to open | |
status | KDB_ERROR_ENUM | Return status |
handle | Returned XML Handle |
XML_OPEN
Use this function to open an XML file for parsing. You can then use the handle it returns in XML_NEXT to traverse the tree one node at a time and XML_CLOSE to close the file again.
If the file has already been opened elsewhere then use XML_PARSE_BUFFER instead and pass the contents in a buffer.
The status code values returned are the same as those returned by database routines.
For more on parsing XML see this page.