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. |
Modifier and Type | Method and Description |
---|---|
Configuration |
VisitContext.configuration()
The configuration wrapped by this context.
|
Configuration |
RecordContext.configuration()
The configuration wrapped by this context.
|
Configuration |
ExecuteContext.configuration()
The configuration wrapped by this context.
|
Configuration |
DSLContext.configuration()
The
Configuration referenced from this
DSLContext . |
Configuration |
DAO.configuration()
Expose the configuration in whose context this
DAO is
operating. |
Configuration |
Context.configuration()
The configuration wrapped by this context.
|
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(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(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 |
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.
|
String |
DataType.getTypeName(Configuration configuration)
Retrieve the dialect-specific type name associated with this data type.
|
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 |
DefaultDSLContext.configuration() |
Configuration |
DAOImpl.configuration() |
Configuration |
AbstractRoutine.configuration() |
Configuration |
DefaultConfiguration.derive()
Create a derived configuration from this one, without changing any
properties.
|
Configuration |
DefaultConfiguration.derive(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(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(VisitListenerProvider... newVisitListenerProviders)
Create a derived configuration from this one, with new visit listener
providers.
|
Configuration |
DefaultConfiguration.set(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(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(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) |
String |
DefaultDataType.getCastTypeName(Configuration configuration) |
DataType<T> |
DefaultDataType.getDataType(Configuration configuration) |
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,
String name,
DataType<T> type,
Configuration configuration)
Create an empty array record
|
DAOImpl(Table<R> table,
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. |
Copyright © 2014. All Rights Reserved.