I noticed sometimes with my parent/child objects, or many-to-many relationships, I need to call either SaveOrUpdate, or Merge. Usually, when I need to call SaveOrUpdate, the exception I get on calling Merge has to do with transient objects not being saved first... Please explain the difference between the two.
|
1
|
|
|
|
|
|
This is from section 10.7. Automatic state detection of the Hibernate Reference Documentation:
You should use Merge() if you are trying to update objects that were at one point detached from the session, especially if there might be persistent instances of those objects currently associated with the session. Otherwise, using SaveOrUpdate() in that case would result in an exception. |
||||
|
|
|
hi all ..can you please what should be used for one to many mapping.I am getting multiple input through for loop please help me out.. |
||
|
|
|
SaveOrUpdate() can be used to convert transient object to persistent object.then where should we use Merge()? only when, where the object has been detatched once and now again in session. Please make me understand?i am confused!! |
||
|
|
|
|
As I understand it, Merge will take an object that may not be associated with the current session, and copy its state (property values, etc.) to an object that is associated with the current session (with the same PK value/identifier, of course). SaveOrUpdate will call Save or Update on your session, based on a given object's identity value. |
||
|
|
