201 DBMS_XMLSAVE
DBMS_XMLSAVE
provides XML to database-type functionality.
Note:
With Oracle Database 18.1 Release, the DBMS_XMLSAVE
package is deprecated. Use DBMS_XMLSTORE
instead.
The DBMS_XMLSAVE
package has been replaced with improved technology. While Oracle recommends you not to begin development using DBMS_XMLSAVE
, Oracle continues to support this package for reasons of backward compatibility. Your existing applications using DBMS_XMLSAVE
will continue to work.
This chapter contains the following topics:
See Also:
-
For more information on
DBMS_XMLSTORE
, see DBMS_XMLSTORE
201.1 DBMS_XMLSAVE Security Model
Owned by XDB
, the DBMS_XMLSAVE
package must be created by SYS
or XDB
. The EXECUTE
privilege is granted to PUBLIC
Subprograms in this package are executed using the privileges of the current user.
201.2 DBMS_XMLSAVE Constants
The DBMS_XMLSAVE includes constants to use when specifying parameter values.
These constants are defined in the following table.
Table 201-1 Constants of DBMS_XMLSAVE
Constant | Description |
---|---|
|
The default tag name for the element corresponding to database records -- ROW |
|
Default date mask:'MM/dd/yyyy HH:mm:ss' |
|
Used to specify that when mapping XML elements to database entities; the XSU should be case sensitive. |
|
Used to specify that when mapping XML elements to database. entities the XSU should be case insensitive. |
201.3 Types
The DBMS_XMLSAVE
subprograms use the ctxType
Type.
Table 201-2 Types of DBMS_XMLSAVE
Type | Description |
---|---|
|
The type of the query context handle. The type of the query context handle. This the return type of NEWCONTEXT. |
201.4 Summary of DBMS_XMLSAVE Subprograms
This table lists the DBMS_XMLSAVE
subprograms and briefly describes them.
Table 201-3 DBMS_XMLSAVE Package Subprograms
Method | Description |
---|---|
Clears the key column list. |
|
Clears the update column list. |
|
It closes/deallocates a particular save context. |
|
Deletes records specified by data from the XML document, from the table specified at the context creation time. |
|
Returns the thrown exception's error code and error message. |
|
Inserts the XML document into the table specified at the context creation time. |
|
Creates a save context, and returns the context handle. |
|
Tells the XSU that if an exception is raised, and is being thrown, the XSU should throw the very exception raised; rather then, wrapping it with an |
|
Removes the value of a top-level stylesheet parameter |
|
Changes the batch size used during DML operations. |
|
Sets the commit batch size. |
|
Sets the format of the generated dates in the XML document. |
|
The XSU does mapping of XML elements to database. |
|
This methods adds a column to the key column list. |
|
Tells the XSU whether to preserve whitespace or not. |
|
Names the tag used in the XML document to enclose the XML elements corresponding to database. |
|
This turns on or off escaping of XML tags in the case that the SQL object name, which is mapped to a XML identifier, is not a valid XML identifier. |
|
Adds a column to the update column list. |
|
Registers a XSL transform to be applied to the XML to be saved. |
|
Sets the value of a top-level stylesheet parameter. |
|
Updates the table given the XML document. |
201.4.1 CLEARKEYCOLUMNLIST
This procedure clears the key column list.
Syntax
PROCEDURE clearKeyColumnList(
ctxHdl IN ctxType);
Parameters
Table 201-4 CLEARKEYCOLUMNLIST Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
201.4.2 CLEARUPDATECOLUMNLIST
This procedure clears the update column list.
Syntax
PROCEDURE clearUpdateColumnList(
ctxHdl IN ctxType);
Parameters
Table 201-5 CLEARUPDATECOLUMNLIST Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
201.4.3 CLOSECONTEXT
This procedure closes/deallocates a particular save context.
Syntax
PROCEDURE closeContext(
ctxHdl IN ctxType);
Parameters
Table 201-6 CLOSECONTEXT Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
201.4.4 DELETEXML
The DELETEXML
function deletes records specified by data from the XML document from the table specified at the context creation time, and returns the number of rows deleted.
Syntax
The options are described in the following table.
FUNCTION deleteXML(
ctxHdl IN ctxPType,
xDoc IN VARCHAR2)
RETURN NUMBER;
FUNCTION deleteXML(
ctxHdl IN ctxType,
xDoc IN CLOB)
RETURN NUMBER;
Paramters
Table 201-7 DELETEXML Function Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
String containing the XML document. |
201.4.5 GETEXCEPTIONCONTENT
Through its arguments, this method returns the thrown exception's error code and error message, SQL error code.
This is to get around the fact that the JVM throws an exception on top of whatever exception was raised, rendering PL/SQL unable to access the original exception.
Syntax
PROCEDURE getExceptionContent(
ctxHdl IN ctxType,
errNo OUT NUMBER,
errMsg OUT VARCHAR2);
Parameters
Table 201-8 GETEXCEPTIONCONTENT Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Error number. |
|
|
Error message. |
201.4.6 INSERTXML
Inserts the XML document into the table specified at the context creation time, and returns the number of rows inserted. The options are described in the following table.
Syntax
Table 201-9 INSERTXML Function Syntax
Syntax | Description |
---|---|
|
Passes in the |
|
Passes in the |
Parameters
Table 201-10 INSERTXML Function Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
String containing the XML document. |
201.4.7 NEWCONTEXT
NEWCONTEXT
creates a save context and returns the context handle.
Syntax
FUNCTION newContext(
targetTable IN VARCHAR2)
RETURN ctxType;
Parameters
Table 201-11 NEWCONTEXT Function Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
The target table into which to load the XML document. |
201.4.8 PROPAGATEORIGINALEXCEPTION
The PROPAGATEORIGINALEXCEPTION
procedure tells the XSU that if an exception is raised, and is being thrown, the XSU should throw the very exception raised; rather then, wrapping it with an OracleXMLSQLException
.
Syntax
PROCEDURE propagateOriginalException(
ctxHdl IN ctxType,
flag IN BOOLEAN);
Parameters
Table 201-12 PROPAGATEORIGINALEXCEPTION Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Propagate the original exception? 0= |
201.4.9 REMOVEXSLTPARAM
This procedure removes the value of a top-level stylesheet parameter.
Syntax
PROCEDURE removeXSLTParam(
ctxHdl IN ctxType,
name IN VARCHAR2);
Parameters
Table 201-13 REMOVEXSLTPARAM Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Parameter name. |
201.4.10 SETBATCHSIZE
This procedure changes the batch size used during DML operations.
When performing inserts, updates or deletes, it is better to batch the operations so that they get executed in one shot rather than as separate statements. The flip side is that more memory is needed to buffer all the bind values. Note that when batching is used, a commit occurs only after a batch is executed. So if one of the statement inside a batch fails, the whole batch is rolled back. This is a small price to pay considering the performance gain; nevertheless, if this behavior is unacceptable, then set the batch size to 1.
Syntax
PROCEDURE setBatchSize(
ctxHdl IN ctxType,
batchSize IN NUMBER);
Parameters
Table 201-14 SETBATCHSIZE Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Batch size. |
201.4.11 SETCOMMITBATCH
This procedure sets the commit batch size.
The commit batch size refers to the number or records inserted after which a commit should follow. If batchSize
is less than 1
or the session is in "auto-commit" mode, using the XSU does not make any explicit commits. By default, commitBatch
is 0
.
Syntax
PROCEDURE setCommitBatch(
ctxHdl IN ctxType,
batchSize IN NUMBER);
Parameters
Table 201-15 SETCOMMITBATCH Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Commit batch size. |
201.4.12 SETDATEFORMAT
This procedure sets the format of the generated dates in the XML document.
The syntax of the date format pattern, the date mask, should conform to the requirements of the class java.text.SimpleDateFormat
. Setting the mask to <code>null</code>
or an empty string unsets the date mask.
Syntax
PROCEDURE setDateFormat(
ctxHdl IN ctxType,
mask IN VARCHAR2);
Parameters
Table 201-16 SETDATEFORMAT Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Syntax of the date format pattern. |
201.4.13 SETIGNORECASE
This function tells the XSU whether to ignore case when the XSU maps XML elements to database columns/attributes. This matching is based on the element names (XML tags).
Syntax
PROCEDURE setIgnoreCase(
ctxHdl IN ctxType,
flag IN NUMBER);
Parameters
Table 201-17 SETIGNORECASE Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Ignore tag case in the XML doc? 0= |
201.4.14 SETKEYCOLUMN
This method adds a column to the "key column list".
The value for the column cannot be NULL
. In case of update or delete, the columns in the key column list make up the WHERE
clause of the statement. The key columns list must be specified before updates can complete; this is optional for delete operations.
Syntax
PROCEDURE setKeyColumn(
ctxHdl IN ctxType,
colName IN VARCHAR2);
Parameters
Table 201-18 SETKEYCOLUMN Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Column to be added to the key column list; cannot be |
201.4.15 SETPRESERVEWHITESPACE
This procedure tells the XSU whether or not to preserve whitespace.
Syntax
PROCEDURE setPreserveWhitespace( ctxHdl IN ctxType, flag IN BOOLEAN := true);
Parameters
Table 201-19 SETPRESERVEWHITESPACE Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Should XSU preserve whitespace? |
201.4.16 SETROWTAG
This procedure names the tag used in the XML document to enclose the XML elements corresponding to db. records.
Syntax
PROCEDURE setRowTag(
ctxHdl IN ctxType,
tag IN VARCHAR2);
Parameters
Table 201-20 SETROWTAG Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Tag name. |
201.4.17 SETSQLTOXMLNAMEESCAPING
SETSQLTOXMLNAMEESCAPING
turns on or off escaping of XML tags in the case that the SQL object name, which is mapped to a XML identifier, is not a valid XML identifier.
Syntax
PROCEDURE setSQLToXMLNameEscaping(
ctxHdl IN ctxType,
flag IN BOOLEAN := true);
Parameters
Table 201-21 SETSQLTOXMLNAMEESCAPING Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Turn on escaping? |
201.4.18 SETUPDATECOLUMN
SETUPDATECOLUMN
adds a column to the update column list.
In case of insert, the default is to insert values to all the columns in the table. In case of updates, the default is to only update the columns corresponding to the tags present in the ROW element of the XML document. When the update column list is specified, the columns making up this list alone will get updated or inserted into.
Syntax
PROCEDURE setUpdateColumn(
ctxHdl IN ctxType,
colName IN VARCHAR2);
Parameters
Table 201-22 SETUPDATECOLUMN Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Column to be added to the update column list. |
201.4.19 SETXSLT
SETXSLT
registers an XSL transform to be applied to the XML to be saved.
If a stylesheet was already registered, it gets replaced by the new one. To un-register the stylesheet, pass in null for the URI. The options are described in the following table.
Syntax
Table 201-23 SETXSLT Procedure Syntax
Syntax | Description |
---|---|
|
Passes in the stylesheet through a URI. |
|
Passes in the stylesheet through a |
Parameters
Table 201-24 SETXSLT Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
URI to the stylesheet to register. |
|
|
URL for include, import, and external entities. |
|
|
|
201.4.20 SETXSLTPARAM
SETXSLTPARAM
sets the value of a top-level stylesheet parameter.
The parameter is expected to be a valid XPath expression; literal values would therefore have to be explicitly quoted.
Syntax
PROCEDURE setXSLTParam(
ctxHdl IN ctxType,
name IN VARCHAR2,
value IN VARCHAR2);
Parameters
Table 201-25 SETXSLTPARAM Procedure Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
Parameter name. |
|
|
Parameter value as an XPath expression |
201.4.21 UPDATEXML
Updates the table specified at the context creation time with data from the XML document, and returns the number of rows updated.
The options are described in the following table.
Syntax
FUNCTION updateXML(
ctxHdl IN ctxType,
xDoc IN VARCHAR2)
RETURN NUMBER;
FUNCTION updateXML(
ctxHdl IN ctxType,
xDoc IN CLOB)
RETURN NUMBER;
Parameters
Table 201-26 UPDATEXML Function Parameters
Parameter | IN / OUT | Description |
---|---|---|
|
|
Context handle. |
|
|
String containing the XML document. |