Hibernate version: 3.3.1-GA
I've discovered that C3P0ConnectionProvider is not used automatically even when c3p0.* properties are present, which *I think* is contrary to what the docs are stating:
Quote:
Hibernate will use its org.hibernate.connection.C3P0ConnectionProvider for connection pooling if you set hibernate.c3p0.* properties.
http://www.hibernate.org/hib_docs/v3/reference/en-US/html_single/#configuration-hibernatejdbcWhen I modify hibernate.cfg.xml to explicitly use C3P0 it work
Quote:
<property name="connection.provider_class">
org.hibernate.connection.C3P0ConnectionProvider
</property>
Has anyone else seen this?
Was it intentionally changed to the current behavior, and only the docs need to be updated? Or is this a bug that deserves a JIRA ticket?