itSpice
Subscribe:       RSS    Twitter    EMail
 




Enter your email address:

Delivered by FeedBurner












DB

Hibernate Vs JDBC Performance Comparison

By Pinaki Mukherjee
The Hibernate advantage over JDBC
Concurrency Support
In JDBC there is no check that always every user has updated data this check has to be added by the developer. Hibernate maintains this concurrency check using a version field.It checks this version field in the database table before every update operation.
So, if two users retrieve data [...]