Hi,
Is it possible to pass xml parameter from hibernate to say sql server 2005? I need to, for example to do the following in sql server
create procedure sample
@xmldata ntext
as
sp_xml_preparedocument @document OUTPUT,@xmldata
.
.
.
@document is an handle to sql server xml representation of @xmldata which is xml input from the application. This helps in doing batch work in sql server without the need of number of round trips between java application and database. Does Hibernate support this ie being able to send xml parameter data?
Thanks in Advanace
|