FREEDOCUMENT v18
The FREEDOCUMENT procedure frees the DOMDocument object.
FREEDOCUMENT(doc IN DOMDocument)
Parameters
doc
The DOMDocument to free.
Examples
This example creates a DOMDocument that's not accessible after it's free.
DECLARE l_domdoc DBMS_XMLDOM.DOMDocument; BEGIN l_domdoc := DBMS_XMLDOM.NEWDOMDOCUMENT(); DBMS_XMLDOM.FREEDOCUMENT(l_domdoc); DBMS_XMLDOM.SETVERSION(l_domdoc, '1.0'); END; /
- On this page
- Parameters
- Examples