org.hibernate.connection |
This package abstracts the mechanism for obtaining
a JDBC connection.
A concrete implementation of ConnectionProvider may be
selected by specifying hibernate.connection.provider_class.
|
Java Source File Name | Type | Comment |
C3P0ConnectionProvider.java | Class | A connection provider that uses a C3P0 connection pool. |
ConnectionProvider.java | Interface | A strategy for obtaining JDBC connections.
Implementors might also implement connection pooling.
The ConnectionProvider interface is not intended to be
exposed to the application. |
ConnectionProviderFactory.java | Class | Instantiates a connection provider given either System properties or
a java.util.Properties instance. |
DatasourceConnectionProvider.java | Class | A connection provider that uses a DataSource registered with JNDI. |
DriverManagerConnectionProvider.java | Class | A connection provider that uses java.sql.DriverManager. |
ProxoolConnectionProvider.java | Class | A connection provider that uses a Proxool connection pool. |
UserSuppliedConnectionProvider.java | Class | An implementation of the ConnectionProvider interface that
simply throws an exception when a connection is requested. |