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 JDBCConnections.org.hibernate.engine.jdbc.connections.spi Defines SPI contracts for obtaining JDBCConnections 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 classAgroalConnectionProviderConnectionProvider 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 classC3P0ConnectionProviderA 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 classDatasourceConnectionProviderImplAConnectionProviderthat manages connections from an underlyingDataSource.classDriverManagerConnectionProviderImplA connection provider that uses theDriverManagerdirectly to open connections and provides a very rudimentary connection pool.classUserSuppliedConnectionProviderImplAn implementation of theConnectionProviderinterface 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 ConnectionProviderConnectionProviderInitiator. 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 ConnectionProviderAbstractMultiTenantConnectionProvider. getAnyConnectionProvider()protected abstract ConnectionProviderAbstractMultiTenantConnectionProvider. selectConnectionProvider(T 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 ConnectionProviderJdbcEnvironmentInitiator.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 classHikariCPConnectionProviderHikariCP 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, SharedSessionContractImplementor session) -
Uses of ConnectionProvider in org.hibernate.proxool.internal
Classes in org.hibernate.proxool.internal that implement ConnectionProvider Modifier and Type Class Description classProxoolConnectionProviderA 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 ConnectionProviderBaseTransactionIsolationConfigTest. getConnectionProviderUnderTest() -
Uses of ConnectionProvider in org.hibernate.testing.env
Methods in org.hibernate.testing.env that return ConnectionProvider Modifier and Type Method Description static ConnectionProviderConnectionProviderBuilder. buildConnectionProvider()static ConnectionProviderConnectionProviderBuilder. buildConnectionProvider(boolean allowAggressiveRelease)static ConnectionProviderConnectionProviderBuilder. buildConnectionProvider(String dbName)static ConnectionProviderConnectionProviderBuilder. buildConnectionProvider(String dbName, Map<String,String> environmentOverrides)static ConnectionProviderConnectionProviderBuilder. 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 classConnectionProviderDelegateThisConnectionProviderextends any other ConnectionProvider that would be used by default taken the current configuration properties.classSharedDriverManagerConnectionProviderImplA special connection provider that is shared across test runs for better performance.classSQLServerSnapshotIsolationConnectionProviderThisConnectionProviderextends 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 ConnectionProviderConnectionProviderDelegate. getConnectionProvider()Methods in org.hibernate.testing.jdbc with parameters of type ConnectionProvider Modifier and Type Method Description voidConnectionProviderDelegate. 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 classJtaAwareConnectionProviderImplAConnectionProviderimplementation 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 classPreparedStatementSpyConnectionProviderThisConnectionProviderextends any other ConnectionProvider that would be used by default taken the current configuration properties, and it intercept the underlyingPreparedStatementmethod calls.classTimeZoneConnectionProviderThisConnectionProviderextends 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 classViburDBCPConnectionProviderViburDBCP connection provider for Hibernate integration.
-