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. |
org.jooq.tools.jdbc |
The
org.jooq.tools.jdbc package contains compatibility classes
to bridge between JDBC 4.0 and JDBC 4.1. |
Modifier and Type | Method and Description |
---|---|
Settings |
Scope.settings()
The settings wrapped by this context.
|
Settings |
DAO.settings()
The settings wrapped by this context.
|
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(java.lang.Boolean value) |
Settings |
Settings.withBackslashEscaping(BackslashEscaping value) |
Settings |
Settings.withDebugInfoOnStackTrace(java.lang.Boolean value) |
Settings |
Settings.withDelimiter(java.lang.String value) |
Settings |
Settings.withExecuteLogging(java.lang.Boolean value) |
Settings |
Settings.withExecuteWithOptimisticLocking(java.lang.Boolean value) |
Settings |
Settings.withExecuteWithOptimisticLockingExcludeUnversioned(java.lang.Boolean value) |
Settings |
Settings.withFetchSize(java.lang.Integer value) |
Settings |
Settings.withFetchWarnings(java.lang.Boolean value) |
Settings |
Settings.withInListPadding(java.lang.Boolean value) |
Settings |
Settings.withMapJPAAnnotations(java.lang.Boolean value) |
Settings |
Settings.withMaxRows(java.lang.Integer value) |
Settings |
Settings.withParamCastMode(ParamCastMode value) |
Settings |
Settings.withParamType(ParamType value) |
Settings |
Settings.withQueryTimeout(java.lang.Integer value) |
Settings |
Settings.withReflectionCaching(java.lang.Boolean value) |
Settings |
Settings.withRenderCatalog(java.lang.Boolean value) |
Settings |
Settings.withRenderFormatted(java.lang.Boolean value) |
Settings |
Settings.withRenderFormatting(RenderFormatting value) |
Settings |
Settings.withRenderKeywordStyle(RenderKeywordStyle value) |
Settings |
Settings.withRenderMapping(RenderMapping value) |
Settings |
Settings.withRenderNameStyle(RenderNameStyle value) |
Settings |
Settings.withRenderOrderByRownumberForEmulatedPagination(java.lang.Boolean value) |
Settings |
Settings.withRenderScalarSubqueriesForStoredFunctions(java.lang.Boolean value) |
Settings |
Settings.withRenderSchema(java.lang.Boolean value) |
Settings |
Settings.withReturnAllOnUpdatableRecord(java.lang.Boolean value) |
Settings |
Settings.withReturnRecordToPojo(java.lang.Boolean value) |
Settings |
Settings.withStatementType(StatementType value) |
Settings |
Settings.withThrowExceptions(ThrowExceptions value) |
Settings |
Settings.withUpdatablePrimaryKeys(java.lang.Boolean value) |
Modifier and Type | Method and Description |
---|---|
javax.xml.bind.JAXBElement<Settings> |
ObjectFactory.createSettings(Settings value)
|
Modifier and Type | Method and Description |
---|---|
static Settings |
SettingsTools.clone(Settings settings)
Clone some settings.
|
javax.xml.bind.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 BackslashEscaping |
SettingsTools.getBackslashEscaping(Settings settings)
Get the value BackslashEscaping value.
|
static int |
SettingsTools.getFetchSize(int fetchSize,
Settings settings)
|
static int |
SettingsTools.getMaxRows(int maxRows,
Settings settings)
|
static ParamType |
SettingsTools.getParamType(Settings settings)
Get the parameter type from the settings.
|
static int |
SettingsTools.getQueryTimeout(int timeout,
Settings 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() |
Settings |
DAOImpl.settings() |
Modifier and Type | Method and Description |
---|---|
Configuration |
DefaultConfiguration.derive(Settings newSettings) |
Configuration |
DefaultConfiguration.set(Settings newSettings) |
void |
DefaultConfiguration.setSettings(Settings newSettings) |
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(java.sql.Connection connection,
Settings settings)
Create an executor with a connection, a dialect and settings configured.
|
static DSLContext |
DSL.using(java.sql.Connection connection,
SQLDialect dialect,
Settings settings)
Create an executor with a connection, a dialect and settings configured.
|
static DSLContext |
DSL.using(javax.sql.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(java.sql.Connection connection,
SQLDialect dialect,
Settings settings) |
DefaultDSLContext(javax.sql.DataSource datasource,
SQLDialect dialect,
Settings settings) |
DefaultDSLContext(SQLDialect dialect,
Settings settings) |
Modifier and Type | Method and Description |
---|---|
Settings |
MockConfiguration.settings() |
Modifier and Type | Method and Description |
---|---|
Configuration |
MockConfiguration.derive(Settings newSettings) |
Configuration |
MockConfiguration.set(Settings newSettings) |
Copyright © 2018. All Rights Reserved.