Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.conf | |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
Settings |
Configuration.settings()
Retrieve the runtime configuration settings.
|
Modifier and Type | Method and Description |
---|---|
Configuration |
Configuration.derive(Settings newSettings)
Create a derived configuration from this one, with new settings.
|
Configuration |
Configuration.set(Settings newSettings)
Change this configuration to hold a new settings.
|
Modifier and Type | Method and Description |
---|---|
static Settings |
SettingsTools.clone(Settings settings)
Clone some settings.
|
Settings |
ObjectFactory.createSettings()
Create an instance of
Settings |
static Settings |
SettingsTools.defaultSettings()
Retrieve the configured default settings.
|
Settings |
Settings.withAttachRecords(Boolean value) |
Settings |
Settings.withExecuteLogging(Boolean value) |
Settings |
Settings.withExecuteWithOptimisticLocking(Boolean value) |
Settings |
Settings.withParamType(ParamType value) |
Settings |
Settings.withReflectionCaching(Boolean value) |
Settings |
Settings.withRenderFormatted(Boolean value) |
Settings |
Settings.withRenderKeywordStyle(RenderKeywordStyle value) |
Settings |
Settings.withRenderMapping(RenderMapping value) |
Settings |
Settings.withRenderNameStyle(RenderNameStyle value) |
Settings |
Settings.withRenderSchema(Boolean value) |
Settings |
Settings.withStatementType(StatementType value) |
Settings |
Settings.withUpdatablePrimaryKeys(Boolean value) |
Modifier and Type | Method and Description |
---|---|
JAXBElement<Settings> |
ObjectFactory.createSettings(Settings value)
|
Modifier and Type | Method and Description |
---|---|
static Settings |
SettingsTools.clone(Settings settings)
Clone some settings.
|
JAXBElement<Settings> |
ObjectFactory.createSettings(Settings value)
|
static boolean |
SettingsTools.executePreparedStatements(Settings settings)
Whether a
PreparedStatement should be executed. |
static boolean |
SettingsTools.executeStaticStatements(Settings settings)
Whether static
Statement should be executed. |
static ParamType |
SettingsTools.getParamType(Settings settings)
Get the parameter type from the settings.
|
static RenderMapping |
SettingsTools.getRenderMapping(Settings settings)
Lazy access to
RenderMapping . |
static StatementType |
SettingsTools.getStatementType(Settings settings)
Get the statement type from the settings.
|
static boolean |
SettingsTools.reflectionCaching(Settings settings)
Whether primary keys should be updatable.
|
static boolean |
SettingsTools.updatablePrimaryKeys(Settings settings)
Whether primary keys should be updatable.
|
Modifier and Type | Method and Description |
---|---|
Settings |
DefaultConfiguration.settings()
Retrieve the runtime configuration settings.
|
Modifier and Type | Method and Description |
---|---|
Configuration |
DefaultConfiguration.derive(Settings newSettings)
Create a derived configuration from this one, with new settings.
|
Configuration |
DefaultConfiguration.set(Settings newSettings)
Change this configuration to hold a new settings.
|
static DSLContext |
DSL.using(ConnectionProvider connectionProvider,
SQLDialect dialect,
Settings settings)
Create an executor with a custom connection provider, a dialect and settings
configured.
|
static DSLContext |
DSL.using(Connection connection,
Settings settings)
Create an executor with a connection, a dialect and settings configured.
|
static DSLContext |
DSL.using(Connection connection,
SQLDialect dialect,
Settings settings)
Create an executor with a connection, a dialect and settings configured.
|
static DSLContext |
DSL.using(DataSource datasource,
SQLDialect dialect,
Settings settings)
Create an executor with a data source, a dialect and settings configured.
|
static DSLContext |
DSL.using(SQLDialect dialect,
Settings settings)
Create an executor with a dialect and settings configured.
|
Constructor and Description |
---|
DefaultDSLContext(ConnectionProvider connectionProvider,
SQLDialect dialect,
Settings settings) |
DefaultDSLContext(Connection connection,
SQLDialect dialect,
Settings settings) |
DefaultDSLContext(DataSource datasource,
SQLDialect dialect,
Settings settings) |
DefaultDSLContext(SQLDialect dialect,
Settings settings) |
Copyright © 2014. All Rights Reserved.