convert xnl node to xml data type  
Author Message
sent1729





PostPosted: 2006-2-17 23:45:00 Top

java-programmer, convert xnl node to xml data type Hi all,

I am new to java programming. In my application I wanted to convert xml
node to an xml data type. The reason behind doing this is: I wanted to
write this xml node (in to a column of xml data type) with in to a
sequel server 2005 database. I am using JDBC driver (version 4) to
connect to the database. My stored procedure from the database side
accepts only xml data type and not xml Node type. So I wanted to
convert this xml Node to XML data type.

Can any help me with any input.

Thanks
Nathan.

 
Raymond DeCampo





PostPosted: 2006-2-18 0:18:00 Top

java-programmer >> convert xnl node to xml data type email***@***.com wrote:
> Hi all,
>
> I am new to java programming. In my application I wanted to convert xml
> node to an xml data type. The reason behind doing this is: I wanted to
> write this xml node (in to a column of xml data type) with in to a
> sequel server 2005 database. I am using JDBC driver (version 4) to
> connect to the database. My stored procedure from the database side
> accepts only xml data type and not xml Node type. So I wanted to
> convert this xml Node to XML data type.
>

An XML data type is non-standard, at least from the perspective of JDBC.
Your JDBC driver likely provides non-standard classes to represent
this type, or perhaps uses the existing DOM classes. Consult the
document of your JDBC driver.

HTH,
Ray

--
This signature intentionally left blank.