Uses of Interface
org.hibernate.connection.ConnectionProvider

Packages that use ConnectionProvider
org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. 
org.hibernate.connection This package abstracts the mechanism for obtaining a JDBC connection. 
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
 

Uses of ConnectionProvider in org.hibernate.cfg
 

Methods in org.hibernate.cfg that return ConnectionProvider
protected  ConnectionProvider SettingsFactory.createConnectionProvider(Properties properties)
           
 ConnectionProvider Settings.getConnectionProvider()
           
 

Uses of ConnectionProvider in org.hibernate.connection
 

Classes in org.hibernate.connection that implement ConnectionProvider
 class C3P0ConnectionProvider
          A connection provider that uses a C3P0 connection pool.
 class DatasourceConnectionProvider
          A connection provider that uses a DataSource registered with JNDI.
 class DriverManagerConnectionProvider
          A connection provider that uses java.sql.DriverManager.
 class ProxoolConnectionProvider
          A connection provider that uses a Proxool connection pool.
 class UserSuppliedConnectionProvider
          An implementation of the ConnectionProvider interface that simply throws an exception when a connection is requested.
 

Methods in org.hibernate.connection that return ConnectionProvider
static ConnectionProvider ConnectionProviderFactory.newConnectionProvider()
          Instantiate a ConnectionProvider using System properties.
static ConnectionProvider ConnectionProviderFactory.newConnectionProvider(Properties properties)
          Instantiate a ConnectionProvider using given properties.
static ConnectionProvider ConnectionProviderFactory.newConnectionProvider(Properties properties, Map connectionProviderInjectionData)
          Instantiate a ConnectionProvider using given properties.
 

Uses of ConnectionProvider in org.hibernate.engine
 

Methods in org.hibernate.engine that return ConnectionProvider
 ConnectionProvider SessionFactoryImplementor.getConnectionProvider()
          Get the connection provider
 

Uses of ConnectionProvider in org.hibernate.impl
 

Methods in org.hibernate.impl that return ConnectionProvider
 ConnectionProvider SessionFactoryImpl.getConnectionProvider()