just a question i'm puzzling on at the moment. Should JPA implementations throw something like 'ConcurrentModificationException' when two instances of an application modify the same row?
Or in other words: should JPA solve the lost update problem?
Or in even other words: User A retrieves Record A User B retrieves Record A User A updates Record A and stores it User B updates Record A and stores it (and gets an exception?)
Thanks for any help...
Regards, Robert
Ps. Using JPA through Spring and implemented by hibernate 3.2