It is often useful to store an XML fragment in a relational database text field.
The SQLEncodeElement/SQLDecodeElement
accessor encode/decodes XML to/from a form suitable for
storage in a text field of an RDBMS.
Encoding/Decoding is applied to one or multiple elements by specifying the canonical XPath target in the operator.
SQLEncodeElement
SQLEncodeElement
serializes an XML fragment located by the canonical XPATH specified in the operator.
The element, it's text and all it's child nodes are serialized into escaped text. The elements content becomes the serialized
text. All child elements are removed. SQLEncodeElement serializes and collapses to escaped text an XML fragment. The element's text
is suitable for storing in a RDBMS text field.
Example
For a source document var:source
<root>
<a>
<b>text</b>
</a>
</root>
Element /root/a is encoded with...
<instr>
<type>SQLEncodeElement</type>
<operand>var:source</operand>
<operator>
<xpath>/root/a</xpath>
</operator>
<target>var:encoded</target>
</instr>
Producing the encoded document...
<root>
<a>
&lt;a&gt;
&lt;b&gt;text&lt;/b&gt;
&lt;/a&gt;
</a>
</root>
SQLDecodeElement
SQLDecodeElement
parses a text element and replaces a text element located by the canonical XPATH specified in the operator.
The element's text is parsed to an XML fragment. The fragment replaces the text element. SQLDecodeElement inflates an escaped text XML fragment.
Example
The encoded document above is decoded with
<instr>
<type>SQLDecodeElement</type>
<operand>var:encoded</operand>
<operator>
<xpath>/root/a</xpath>
</operator>
<target>var:decoded</target>
</instr>
Producing the original
<root>
<a>
<b>text</b>
</a>
</root>