Plain « Transaction « JPA Q&A





1. Difference between JTA, JPA and Plain JDBC in hibernate    stackoverflow.com

Can anyone tell me what is the difference between JTA, JPA, and Plain JDBC in terms of hibernate? I have been asked continuously this question and I fumble while giving the ...

3. Transaction API vs. plain session    forum.hibernate.org

99% of the time you can get away without doing it but there is virtually no overhead in wrapping with a transaction. I have had funny bugs/behaviour when not using the transaction under certain combos of DB/JDBC driver/connection pool so I would say wrap everything with a transaction to be on the safe side. Oracle in particular can be a bit ...

4. transaction trouble mixing Hibernate and plain JDBC    forum.hibernate.org

Newbie Joined: Wed Dec 07, 2005 4:43 pm Posts: 1 I have used Hibernate successfully in past projects, but now I am trying to integrate Hiberante with a legacy system that uses JDBC. The intent is to gradually replace the plain JDBC code with Hibernate persistence, but the two will have to coexist for some period of time. To that end, ...