Hello,
Does Hibernate API offer any means of getting to the underlying DB connection pool?
Specifically, I am using DBCP and would like to get to its PoolableConnectionFactory class, so that I can call 'getPool()' method (
http://jakarta.apache.org/commons/dbcp/ ... l#getPool() ), which would allow me to examine the status of the DB pool (its size and the number of checked out connections).
I looked at this:
http://www.hibernate.org/hib_docs/api/n ... vider.html
However, I saw nothing that would allow me to get to the above DBCP class instance.
Is there a way to get more information about the connection pool status from/via Hibernate?
Thank you,
Otis