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(java.util.Properties properties)
           
 ConnectionProvider Settings.getConnectionProvider()
           
 

Uses of ConnectionProvider in org.hibernate.connection
 

Classes in org.hibernate.connection that implement ConnectionProvider
 class DatasourceConnectionProvider
          A connection provider that uses a DataSource registered with JNDI.
 class DriverManagerConnectionProvider
          A connection provider that uses java.sql.DriverManager.
 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(java.util.Properties properties)
          Instantiate a ConnectionProvider using given properties.
static ConnectionProvider ConnectionProviderFactory.newConnectionProvider(java.util.Properties properties, java.util.Map connectionProviderInjectionData)
          Create a connection provider based on the given information.
 

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



Copyright © 2008 Hibernate.org. All Rights Reserved.