Uses of Interface
org.jooq.ConnectionProvider
-
Packages that use ConnectionProvider Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes.org.jooq.tools.jdbc Theorg.jooq.tools.jdbc
package contains compatibility classes to bridge between JDBC 4.0 and JDBC 4.1. -
-
Uses of ConnectionProvider in org.jooq
Methods in org.jooq that return ConnectionProvider Modifier and Type Method Description ConnectionProvider
Configuration. connectionProvider()
Get this configuration's underlying connection provider.Methods in org.jooq with parameters of type ConnectionProvider Modifier and Type Method Description void
ExecuteContext. connectionProvider(ConnectionProvider connectionProvider)
Override theConnection
that is being used for execution.Configuration
Configuration. derive(ConnectionProvider newConnectionProvider)
Create a derived configuration from this one, with a new connection provider.Configuration
Configuration. set(ConnectionProvider newConnectionProvider)
Change this configuration to hold a new connection provider. -
Uses of ConnectionProvider in org.jooq.impl
Classes in org.jooq.impl that implement ConnectionProvider Modifier and Type Class Description class
DataSourceConnectionProvider
A default implementation for a pooledDataSource
-orientedConnectionProvider
class
DefaultConnectionProvider
A default implementation forConnectionProvider
.class
NoConnectionProvider
An "empty" implementation that is never connected.Methods in org.jooq.impl that return ConnectionProvider Modifier and Type Method Description ConnectionProvider
DefaultConfiguration. connectionProvider()
Methods in org.jooq.impl with parameters of type ConnectionProvider Modifier and Type Method Description Configuration
DefaultConfiguration. derive(ConnectionProvider newConnectionProvider)
Configuration
DefaultConfiguration. set(ConnectionProvider newConnectionProvider)
void
DefaultConfiguration. setConnectionProvider(ConnectionProvider newConnectionProvider)
static DSLContext
DSL. using(ConnectionProvider connectionProvider, SQLDialect dialect)
Create an executor with a custom connection provider and a dialect configured.static DSLContext
DSL. using(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
Create an executor with a custom connection provider, a dialect and settings configured.Constructors in org.jooq.impl with parameters of type ConnectionProvider Constructor Description DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect)
DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
DefaultTransactionProvider(ConnectionProvider connectionProvider)
DefaultTransactionProvider(ConnectionProvider connectionProvider, boolean nested)
ThreadLocalTransactionProvider(ConnectionProvider connectionProvider)
ThreadLocalTransactionProvider(ConnectionProvider connectionProvider, boolean nested)
-
Uses of ConnectionProvider in org.jooq.tools.jdbc
Classes in org.jooq.tools.jdbc that implement ConnectionProvider Modifier and Type Class Description class
MockConnectionProvider
A mock connection provider.Methods in org.jooq.tools.jdbc that return ConnectionProvider Modifier and Type Method Description ConnectionProvider
MockConfiguration. connectionProvider()
Methods in org.jooq.tools.jdbc with parameters of type ConnectionProvider Modifier and Type Method Description Configuration
MockConfiguration. derive(ConnectionProvider newConnectionProvider)
Configuration
MockConfiguration. set(ConnectionProvider newConnectionProvider)
Constructors in org.jooq.tools.jdbc with parameters of type ConnectionProvider Constructor Description MockConnectionProvider(ConnectionProvider delegate, MockDataProvider provider)
-