Uses of Interface
org.hibernate.connection.ConnectionProvider

Packages that use ConnectionProvider
org.hibernate.cfg   
org.hibernate.connection   
org.hibernate.engine   
org.hibernate.impl   
 

Uses of ConnectionProvider in org.hibernate.cfg
 

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

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()