I want to Insert/Update/Delete from DB in a single query using Hibernate template then which query do i need to use?
I tried using saveupdate/saveUpdateAll it is updating and inserting the records but not deleting.
For e.g.
Employee object has a list of Address objects.
Initially i have 2 address object set in Employee object and i remove one object and call saveupdate or saveupdateall or merge method of hibernate template still it is not deleting one record from DB.
Need help!
Thanks.


Reply With Quote