Kristoffer wrote:
[...]But can I use the same database table for both JDBC and Hibernate operations, or "must" I only use Hibernate on a table once it has been "Hibernated"?[...]
As said, when the access happens between transactions, there will be no problem.
However I would second what one of the other participants in this thread wrote: In my experience, the best gain during migration is, if you convert one data-table at a time in
all parts of the applications. Try it! You will see, that Hibernate is much more efficient in access time, generated SQL as well as in maintainability. It will be most impressive, when you start mapping your object relations from seperate SQL-join statements to Hibernate-mappings.
All the best,
René