Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
org.jooq.util.oracle |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.ORACLE dialect. |
Modifier and Type | Method and Description |
---|---|
Configuration |
Scope.configuration()
The configuration of the current scope.
|
Configuration |
DAO.configuration()
Expose the configuration in whose context this
DAO is
operating. |
Configuration |
AttachableInternal.configuration()
Get the underlying configuration
|
Configuration |
Configuration.derive()
Create a derived configuration from this one, without changing any
properties.
|
Configuration |
Configuration.derive(ConnectionProvider newConnectionProvider)
Create a derived configuration from this one, with a new connection
provider.
|
Configuration |
Configuration.derive(ExecuteListenerProvider... newExecuteListenerProviders)
Create a derived configuration from this one, with new execute listener
providers.
|
Configuration |
Configuration.derive(RecordListenerProvider... newRecordListenerProviders)
Create a derived configuration from this one, with new record listener
providers.
|
Configuration |
Configuration.derive(RecordMapperProvider newRecordMapperProvider)
Create a derived configuration from this one, with a new record mapper
provider.
|
Configuration |
Configuration.derive(Settings newSettings)
Create a derived configuration from this one, with new settings.
|
Configuration |
Configuration.derive(SQLDialect newDialect)
Create a derived configuration from this one, with a new dialect.
|
Configuration |
Configuration.derive(TransactionProvider newTransactionProvider)
Create a derived configuration from this one, with a new transaction
provider.
|
Configuration |
Configuration.derive(VisitListenerProvider... newVisitListenerProviders)
Create a derived configuration from this one, with new visit listener
providers.
|
Configuration |
Configuration.set(ConnectionProvider newConnectionProvider)
Change this configuration to hold a new connection provider.
|
Configuration |
Configuration.set(ExecuteListenerProvider... newExecuteListenerProviders)
Change this configuration to hold a new execute listener providers.
|
Configuration |
Configuration.set(RecordListenerProvider... newRecordListenerProviders)
Change this configuration to hold a new record listener providers.
|
Configuration |
Configuration.set(RecordMapperProvider newRecordMapperProvider)
Change this configuration to hold a new record mapper provider.
|
Configuration |
Configuration.set(Settings newSettings)
Change this configuration to hold a new settings.
|
Configuration |
Configuration.set(SQLDialect newDialect)
Change this configuration to hold a new dialect.
|
Configuration |
Configuration.set(TransactionProvider newTransactionProvider)
Change this configuration to hold a new transaction provider.
|
Configuration |
Configuration.set(VisitListenerProvider... newVisitListenerProviders)
Change this configuration to hold a new visit listener providers.
|
Modifier and Type | Method and Description |
---|---|
void |
Result.attach(Configuration configuration)
Attach this result and all of its contained records to a new
Configuration . |
void |
Attachable.attach(Configuration configuration)
Attach this object to a new
Configuration . |
int |
Routine.execute(Configuration configuration)
Execute the stored object using a
Configuration object |
java.lang.String |
DataType.getCastTypeName(Configuration configuration)
Retrieve the dialect-specific type name associated with this data type
used for casting.
|
DataType<T> |
Parameter.getDataType(Configuration configuration)
The dialect-specific type of this parameter
|
DataType<T> |
Field.getDataType(Configuration configuration)
The dialect-specific type of this field.
|
DataType<T> |
DataType.getDataType(Configuration configuration)
The dialect-specific data type representing this data type.
|
java.lang.String |
DataType.getTypeName(Configuration configuration)
Retrieve the dialect-specific type name associated with this data type.
|
void |
TransactionalRunnable.run(Configuration configuration)
Run the transactional code.
|
T |
TransactionalCallable.run(Configuration configuration)
Run the transactional code.
|
Constructor and Description |
---|
SchemaMapping(Configuration configuration)
Deprecated.
Construct a mapping from a
Configuration object |
Modifier and Type | Class and Description |
---|---|
class |
DefaultConfiguration
A default implementation for configurations within a
DSLContext , if no
custom configuration was supplied to DSL.using(Configuration) . |
Modifier and Type | Method and Description |
---|---|
Configuration |
DAOImpl.configuration() |
Configuration |
AbstractRoutine.configuration() |
Configuration |
DefaultConfiguration.derive()
Create a derived configuration from this one, without changing any
properties.
|
Configuration |
DefaultConfiguration.derive(java.sql.Connection newConnection)
Convenience method for
DefaultConfiguration.derive(ConnectionProvider) , using a
DefaultConnectionProvider . |
Configuration |
DefaultConfiguration.derive(ConnectionProvider newConnectionProvider)
Create a derived configuration from this one, with a new connection
provider.
|
Configuration |
DefaultConfiguration.derive(javax.sql.DataSource newDataSource)
Convenience method for
DefaultConfiguration.derive(ConnectionProvider) , using a
DataSourceConnectionProvider . |
Configuration |
DefaultConfiguration.derive(ExecuteListenerProvider... newExecuteListenerProviders)
Create a derived configuration from this one, with new execute listener
providers.
|
Configuration |
DefaultConfiguration.derive(RecordListenerProvider... newRecordListenerProviders)
Create a derived configuration from this one, with new record listener
providers.
|
Configuration |
DefaultConfiguration.derive(RecordMapperProvider newRecordMapperProvider)
Create a derived configuration from this one, with a new record mapper
provider.
|
Configuration |
DefaultConfiguration.derive(Settings newSettings)
Create a derived configuration from this one, with new settings.
|
Configuration |
DefaultConfiguration.derive(SQLDialect newDialect)
Create a derived configuration from this one, with a new dialect.
|
Configuration |
DefaultConfiguration.derive(TransactionProvider newTransactionProvider)
Create a derived configuration from this one, with a new transaction
provider.
|
Configuration |
DefaultConfiguration.derive(VisitListenerProvider... newVisitListenerProviders)
Create a derived configuration from this one, with new visit listener
providers.
|
Configuration |
DefaultConfiguration.set(java.sql.Connection newConnection)
Convenience method for
DefaultConfiguration.set(ConnectionProvider) , using a
DefaultConnectionProvider . |
Configuration |
DefaultConfiguration.set(ConnectionProvider newConnectionProvider)
Change this configuration to hold a new connection provider.
|
Configuration |
DefaultConfiguration.set(javax.sql.DataSource newDataSource)
Convenience method for
DefaultConfiguration.set(ConnectionProvider) , using a
DataSourceConnectionProvider . |
Configuration |
DefaultConfiguration.set(ExecuteListenerProvider... newExecuteListenerProviders)
Change this configuration to hold a new execute listener providers.
|
Configuration |
DefaultConfiguration.set(RecordListenerProvider... newRecordListenerProviders)
Change this configuration to hold a new record listener providers.
|
Configuration |
DefaultConfiguration.set(RecordMapperProvider newRecordMapperProvider)
Change this configuration to hold a new record mapper provider.
|
Configuration |
DefaultConfiguration.set(Settings newSettings)
Change this configuration to hold a new settings.
|
Configuration |
DefaultConfiguration.set(SQLDialect newDialect)
Change this configuration to hold a new dialect.
|
Configuration |
DefaultConfiguration.set(TransactionProvider newTransactionProvider)
Change this configuration to hold a new transaction provider.
|
Configuration |
DefaultConfiguration.set(VisitListenerProvider... newVisitListenerProviders)
Change this configuration to hold a new visit listener providers.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractRoutine.attach(Configuration c) |
int |
AbstractRoutine.execute(Configuration c) |
java.lang.String |
DefaultDataType.getCastTypeName(Configuration configuration) |
DataType<T> |
DefaultDataType.getDataType(Configuration configuration) |
java.lang.String |
DefaultDataType.getTypeName(Configuration configuration) |
void |
DAOImpl.setConfiguration(Configuration configuration)
Inject a configuration.
|
static DSLContext |
DSL.using(Configuration configuration)
Create an executor from a custom configuration.
|
Constructor and Description |
---|
ArrayRecordImpl(Schema schema,
java.lang.String name,
DataType<T> type,
Configuration configuration)
Deprecated.
- 3.4.0 - [#3126] - Use the
ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType)
constructor instead |
ArrayRecordImpl(Schema schema,
java.lang.String name,
DataType<X> type,
Configuration configuration,
Binding<X,Y> binding)
Deprecated.
- 3.4.0 - [#3126] - Use the
ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead. |
ArrayRecordImpl(Schema schema,
java.lang.String name,
DataType<X> type,
Configuration configuration,
Converter<X,T> converter)
Deprecated.
- 3.4.0 - [#3126] - Use the
ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead. |
ArrayRecordImpl(Schema schema,
java.lang.String name,
DataType<X> type,
Configuration configuration,
Converter<Y,T> converter,
Binding<X,Y> binding)
Deprecated.
- 3.4.0 - [#3126] - Use the
ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead. |
DAOImpl(Table<R> table,
java.lang.Class<P> type,
Configuration configuration) |
DefaultDSLContext(Configuration configuration) |
DefaultRecordMapperProvider(Configuration configuration)
Create a new
RecordMapperProvider with a Configuration
that can be used by jOOQ for caching reflection information. |
Modifier and Type | Method and Description |
---|---|
static <R extends UDTRecord<R>> |
OracleDSL.DBMS_AQ.dequeue(Configuration configuration,
Queue<R> queue)
Dequeue a message in an Oracle AQ.
|
static <R extends UDTRecord<R>> |
OracleDSL.DBMS_AQ.dequeue(Configuration configuration,
Queue<R> queue,
OracleDSL.DBMS_AQ.DEQUEUE_OPTIONS_T options,
OracleDSL.DBMS_AQ.MESSAGE_PROPERTIES_T properties)
Dequeue a message in an Oracle AQ.
|
static <R extends UDTRecord<R>> |
OracleDSL.DBMS_AQ.enqueue(Configuration configuration,
Queue<R> queue,
R payload)
Enqueue a message in an Oracle AQ.
|
static <R extends UDTRecord<R>> |
OracleDSL.DBMS_AQ.enqueue(Configuration configuration,
Queue<R> queue,
R payload,
OracleDSL.DBMS_AQ.ENQUEUE_OPTIONS_T options,
OracleDSL.DBMS_AQ.MESSAGE_PROPERTIES_T properties)
Enqueue a message in an Oracle AQ.
|
Copyright © 2014. All Rights Reserved.