Re: [Hibernate] Question about onUpdate

2002-09-11 Thread Gavin King
> It appears to me that the onUpdate() method is not getting called when it should. onUpdate() gets called only when you explicitly pass a transient object to Session.update(). ie. its called when a transient object becomes "sessional". Its not called when an dirty object is UPDATEd on the databas

[Hibernate] Question about onUpdate

2002-09-11 Thread Jon Lipsky
Hi Gavin (and all the rest),   It appears to me that the onUpdate() method is not getting called when it should.  I have an object then implements the Lifecycle interface, and I have run a simple test with it where I create an object, load an object, update an object, and delete an object.  J