XMLPARSE is a SQL/XML operator that you use to parse a character string expression into a Derby XML value.
You can use the result of this operator temporarily or you can store the result permanently in Derby XML columns. Whether temporary or permanent, you can use the XML value as an input to the other Derby XML operators, such as XMLEXISTS and XMLQUERY.
See "XML data types and operators" in the Derby Developer's Guide for more information.
XMLPARSE ( DOCUMENT stringValueExpression PRESERVE WHITESPACE )
For more information on what constitutes a well-formed XML document, see the following specification: http://www.w3.org/TR/REC-xml/#sec-well-formed.
INSERT INTO x_table VALUES (1, XMLPARSE(DOCUMENT ' <roster> <student age="18">AB</student> <student age="23">BC</student> <student>NOAGE</student> </roster>' PRESERVE WHITESPACE) )
INSERT INTO x_table VALUES(2, XMLPARSE (DOCUMENT CAST (? AS CLOB) PRESERVE WHITESPACE) )You should bind into the statement using the setCharacterStream() method, or any other JDBC setXXX method that works for the CAST target type.