December 2002
Intermediate to advanced
928 pages
85h 29m
English
FUNCTION DBMS_XSLPROCESSOR.newProcessor
RETURN Processor;
Creates a new XSL processor instance and returns a handle to it.
FUNCTION DBMS_XSLPROCESSOR.processXSL
(p IN Processor,
ss IN Stylesheet,
{xmldoc IN DOMDoc | url IN VARCHAR})
RETURN DOMDocumentFragment;
Transforms xmldoc or the document at url, using p and ss.
PROCEDURE DBMS_XSLPROCESSOR.showWarnings
(p IN Processor,
yes IN BOOLEAN);
Turns warnings on or off for p, depending on yes.
PROCEDURE DBMS_XSLPROCESSOR.setErrorLog
(p IN Processor,
fileName IN VARCHAR2);
Sets the location for the error log for p to fileName.
FUNCTION DBMS_XSLPROCESSOR.newStylesheet
({xmldoc IN DOMDocument | inp IN VARCHAR2},
ref IN VARCHAR2)
RETURN Stylesheet;
Creates and returns a new instance of a stylesheet, using either xmldoc or inp, which is a URL to use for construction of the stylesheet, and the reference URL of ref.
FUNCTION DBMS_XSLPROCESSOR.transformNode
(n IN DOMNode,
ss IN STYLESHEET)
RETURN DOMDocumentFragment;
Transforms node n using ss and returns result.
FUNCTION DBMS_XSLPROCESSOR.selectNodes
(n IN DOMNode,
pattern IN VARCHAR2)
RETURN DOMNodeList;
Selects and returns nodes from the XML tree with root n that match pattern.
FUNCTION DBMS_XSLPROCESSOR.selectNodes
(n IN DOMNode,
pattern IN VARCHAR2)
RETURN DOMNode;
Selects and returns the first node from the XML tree with root n that matches pattern.
PROCEDURE DBMS_XSLPROCESSOR.valueOf
(n IN DOMNode,
pattern IN VARCHAR2
val OUT VARCHAR2);
Selects and returns the first node from ...