Tagged Questions
1
vote
1answer
672 views
How to release a locked row using JPA?
I'm using the EclipseLink implementation of the JPA 2.0 which allows pessimistic locking. I know how to lock an entity but how do I release the lock? At first I thought this was all taken care of ...
1
vote
1answer
802 views
whats the difference between PESSIMISTIC_READ and PESSIMISTIC_WRITE?
I have read the article Locking and Concurrency in Java Persistence 2.0, and run the sample application. But i still cant realize the difference between PESSIMISTIC_READ and PESSIMISTIC_WRITE. I tried ...
0
votes
0answers
73 views
JPA Pessimistic locks released on commit?
I'm trying to debug a concurrency issue in an application using JBoss 6.0.0-Final, with the Hibernate JPA persistence layer over an SQL Server 2005 data source. I think there must be something ...