toplink « JDBC « JPA Q&A





1. EJB3 Getting at original JDBC Errors    stackoverflow.com

I am using EJB3 on Glassfish using the default TopLink persistance manager. Within a Session Bean, when the persistence manager catches a DB exception, it marks the transaction to be rolled ...

2. Oracle Objects JDBC vs Hibernate/Toplink    coderanch.com

We're an Oracle (9i) shop and are currently weighting the advantages between Toplink, Hibernate and Oracle Objects. The DBAs are keen to use Oracle Objects, which to us j2ee folk, looks very unpleasant indeed. We're currently divided between hibernate and toplink/jdo. Myself I'm leaning on the Hibernate solution, mainly for it's huge support and momentum. We're currently doing a POC which ...

3. glassfish JPA (Toplink Essentials) with large ResultSets    java.net

I have the problem that I want to display a large ResultSet within a JTable - I already figured out I can "paginate" it via Query.setFirstResult() and Query.setMaxResults(). I just don't understand why I can't configure glassfish-persistence/TopLink Essentials in a way so I can simply use a normal query ("select c from Customer c") and TopLink will instantiate JPA-entity objects "on ...