Search Results

3
votes
5answers
483 views

Should web applications use explicit SQL transactions?

Consider a regular web application doing mostly form-based CRUD operations over SQL database. Should there be explicit transaction management in such web application? Or should it simply use autoco …
0
votes

Hibernate transaction problem

What about using Session.clear() and/or Session.evict()? …