Uses of Interface
org.hibernate.engine.jdbc.connections.spi.ConnectionProvider
-
Packages that use ConnectionProvider Package Description org.hibernate.agroal.internal Implementation of ConnectionProvider using Agroal.org.hibernate.c3p0.internal Implementation of ConnectionProvider using the c3p0 Connection pool.org.hibernate.engine.jdbc.connections.internal Various implementations of the SPI contracts for obtaining JDBCConnection
s.org.hibernate.engine.jdbc.connections.spi Defines SPI contracts for obtaining JDBCConnection
s from a provider implemented as a service.org.hibernate.engine.jdbc.env.internal org.hibernate.hikaricp.internal Implementation of ConnectionProvider using HikariCP.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.proxool.internal Implementation of ConnectionProvider using the proxool Connection pool.org.hibernate.testing.boot org.hibernate.testing.common.connections org.hibernate.testing.env org.hibernate.testing.jdbc org.hibernate.testing.jta org.hibernate.testing.orm.jdbc org.hibernate.tool.schema.internal.exec Support for exporting generated DDL to the database or to SQL scripts.org.hibernate.vibur.internal Implementation of ConnectionProvider using ViburDBCP. -
-
Uses of ConnectionProvider in org.hibernate.agroal.internal
Classes in org.hibernate.agroal.internal that implement ConnectionProvider Modifier and Type Class Description class
AgroalConnectionProvider
ConnectionProvider based on Agroal connection pool To use this ConnectionProvider set: -
Uses of ConnectionProvider in org.hibernate.c3p0.internal
Classes in org.hibernate.c3p0.internal that implement ConnectionProvider Modifier and Type Class Description class
C3P0ConnectionProvider
A connection provider that uses a C3P0 connection pool. -
Uses of ConnectionProvider in org.hibernate.engine.jdbc.connections.internal
Classes in org.hibernate.engine.jdbc.connections.internal that implement ConnectionProvider Modifier and Type Class Description class
DatasourceConnectionProviderImpl
AConnectionProvider
that manages connections from an underlyingDataSource
.class
DriverManagerConnectionProviderImpl
A connection provider that uses theDriverManager
directly to open connections and provides a very rudimentary connection pool.class
UserSuppliedConnectionProviderImpl
An implementation of theConnectionProvider
interface that simply throws an exception when a connection is requested, the assumption being that the application is responsible for handing the connection to use to the session.Methods in org.hibernate.engine.jdbc.connections.internal that return ConnectionProvider Modifier and Type Method Description ConnectionProvider
ConnectionProviderInitiator. initiateService(Map<String,Object> configurationValues, ServiceRegistryImplementor registry)
Methods in org.hibernate.engine.jdbc.connections.internal that return types with arguments of type ConnectionProvider Modifier and Type Method Description Class<ConnectionProvider>
ConnectionProviderInitiator. getServiceInitiated()
-
Uses of ConnectionProvider in org.hibernate.engine.jdbc.connections.spi
Methods in org.hibernate.engine.jdbc.connections.spi that return ConnectionProvider Modifier and Type Method Description protected abstract ConnectionProvider
AbstractMultiTenantConnectionProvider. getAnyConnectionProvider()
protected abstract ConnectionProvider
AbstractMultiTenantConnectionProvider. selectConnectionProvider(String tenantIdentifier)
-
Uses of ConnectionProvider in org.hibernate.engine.jdbc.env.internal
Methods in org.hibernate.engine.jdbc.env.internal that return ConnectionProvider Modifier and Type Method Description ConnectionProvider
JdbcEnvironmentInitiator.ConnectionProviderJdbcConnectionAccess. getConnectionProvider()
Constructors in org.hibernate.engine.jdbc.env.internal with parameters of type ConnectionProvider Constructor Description ConnectionProviderJdbcConnectionAccess(ConnectionProvider connectionProvider)
-
Uses of ConnectionProvider in org.hibernate.hikaricp.internal
Classes in org.hibernate.hikaricp.internal that implement ConnectionProvider Modifier and Type Class Description class
HikariCPConnectionProvider
HikariCP Connection provider for Hibernate. -
Uses of ConnectionProvider in org.hibernate.internal
Constructors in org.hibernate.internal with parameters of type ConnectionProvider Constructor Description NonContextualJdbcConnectionAccess(SessionEventListener listener, ConnectionProvider connectionProvider)
-
Uses of ConnectionProvider in org.hibernate.proxool.internal
Classes in org.hibernate.proxool.internal that implement ConnectionProvider Modifier and Type Class Description class
ProxoolConnectionProvider
A connection provider that uses a Proxool connection pool. -
Uses of ConnectionProvider in org.hibernate.testing.boot
Constructors in org.hibernate.testing.boot with parameters of type ConnectionProvider Constructor Description JdbcConnectionAccessImpl(ConnectionProvider connectionProvider)
-
Uses of ConnectionProvider in org.hibernate.testing.common.connections
Methods in org.hibernate.testing.common.connections that return ConnectionProvider Modifier and Type Method Description protected abstract ConnectionProvider
BaseTransactionIsolationConfigTest. getConnectionProviderUnderTest()
-
Uses of ConnectionProvider in org.hibernate.testing.env
Methods in org.hibernate.testing.env that return ConnectionProvider Modifier and Type Method Description static ConnectionProvider
ConnectionProviderBuilder. buildConnectionProvider()
static ConnectionProvider
ConnectionProviderBuilder. buildConnectionProvider(boolean allowAggressiveRelease)
static ConnectionProvider
ConnectionProviderBuilder. buildConnectionProvider(String dbName)
static ConnectionProvider
ConnectionProviderBuilder. buildDataSourceConnectionProvider(String dbName)
-
Uses of ConnectionProvider in org.hibernate.testing.jdbc
Classes in org.hibernate.testing.jdbc that implement ConnectionProvider Modifier and Type Class Description class
ConnectionProviderDelegate
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties.class
SharedDriverManagerConnectionProviderImpl
A special connection provider that is shared across test runs for better performance.class
SQLServerSnapshotIsolationConnectionProvider
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties, and it just sets the READ_COMMITTED_SNAPSHOT isolation level for SQL Server.Methods in org.hibernate.testing.jdbc that return ConnectionProvider Modifier and Type Method Description ConnectionProvider
ConnectionProviderDelegate. getConnectionProvider()
Methods in org.hibernate.testing.jdbc with parameters of type ConnectionProvider Modifier and Type Method Description void
ConnectionProviderDelegate. setConnectionProvider(ConnectionProvider connectionProvider)
Constructors in org.hibernate.testing.jdbc with parameters of type ConnectionProvider Constructor Description ConnectionProviderDelegate(ConnectionProvider connectionProvider)
-
Uses of ConnectionProvider in org.hibernate.testing.jta
Classes in org.hibernate.testing.jta that implement ConnectionProvider Modifier and Type Class Description class
JtaAwareConnectionProviderImpl
AConnectionProvider
implementation intended for testing Hibernate/JTA interaction. -
Uses of ConnectionProvider in org.hibernate.testing.orm.jdbc
Classes in org.hibernate.testing.orm.jdbc that implement ConnectionProvider Modifier and Type Class Description class
PreparedStatementSpyConnectionProvider
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties, and it intercept the underlyingPreparedStatement
method calls.class
TimeZoneConnectionProvider
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties, and it just sets a default TimeZone which is different than the current default one. -
Uses of ConnectionProvider in org.hibernate.tool.schema.internal.exec
Constructors in org.hibernate.tool.schema.internal.exec with parameters of type ConnectionProvider Constructor Description JdbcConnectionAccessConnectionProviderImpl(ConnectionProvider connectionProvider)
-
Uses of ConnectionProvider in org.hibernate.vibur.internal
Classes in org.hibernate.vibur.internal that implement ConnectionProvider Modifier and Type Class Description class
ViburDBCPConnectionProvider
ViburDBCP connection provider for Hibernate integration.
-