I have an Entity Bean and a Session Bean.
The Session's method update() is called from client code.
Session.update() calls Entity.update() which does some set() methods on
the Entity.
A NOT NULL column in the database gets set to null from this call.
The problem is that the Session.update() completes successfully without
catching the SQLException that is thrown. The client code sees that no
update was made but has no exception to notify it.
How do you check to make sure that the store is successful when it
happens after
the code calling it has finished executing.
Please reply to [EMAIL PROTECTED]
Thanks!