We have a requirement where we need to update the XML type column in SQLServer using Hibernate.
Inserting of data is takencare by thirdparty application while we need to update.
To update we retrive a value using API with will provide is DTO which is XML2java Object, we replace couple of values in XML using java object and then update the value using SQL(Here no API provided to update)
When I follow normal SQLQuery and try to update
com.microsoft.sqlserver.jdbc.sqlserverexception XML parsing: line 0, character 0, unrecognized input signature
How to update the value using hibernate 4.x?