0
votes
2answers
305 views

Active Record Pattern with Optimistic Locking - read before update vs. storing version in application?

I trying to implement the active record pattern using Java/JDBC and MySQL along with optimistic locking for concurrency handling. Now, I have a 'version_number' field for all the records in a table ...
1
vote
2answers
2k views

How to code optimistic and pessimistic locking from java code

I know what optimistic and pessimistic locking is, but when you write a java code how do you do it? Suppose I am using Oracle with Java, do I have any methods in JDBC that will help me do that? How ...
0
votes
1answer
662 views

optimistic locking batch update

How to use optimistic locking with batch updates? I am using SimpleJdbcTemplate and for single row I can build update sql that increments version column value and includes version in WHERE clause. ...