Uses of Class
org.jooq.conf.Settings
-
Packages that use Settings Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.conf 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 Settings in org.jooq
Methods in org.jooq that return Settings Modifier and Type Method Description Settings
Configuration. settings()
Retrieve the runtime configuration settings.Settings
DAO. settings()
The settings wrapped by this context.Settings
Scope. settings()
The settings wrapped by this context.Methods in org.jooq with parameters of type Settings Modifier and Type Method 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. -
Uses of Settings in org.jooq.conf
Methods in org.jooq.conf that return types with arguments of type Settings Modifier and Type Method Description javax.xml.bind.JAXBElement<Settings>
ObjectFactory. createSettings(Settings value)
Methods in org.jooq.conf with parameters of type Settings Modifier and Type Method 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 aPreparedStatement
should be executed.static boolean
SettingsTools. executeStaticStatements(Settings settings)
Whether staticStatement
should be executed.static BackslashEscaping
SettingsTools. getBackslashEscaping(Settings settings)
Get the value BackslashEscaping value.static ExecuteWithoutWhere
SettingsTools. getExecuteDeleteWithoutWhere(Settings settings)
Lazy access togetExecuteDeleteWithoutWhere()
.static ExecuteWithoutWhere
SettingsTools. getExecuteUpdateWithoutWhere(Settings settings)
Lazy access togetExecuteUpdateWithoutWhere()
.static int
SettingsTools. getFetchServerOutputSize(int fetchServerOutputSize, Settings settings)
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 QueryPoolable
SettingsTools. getQueryPoolable(QueryPoolable poolable, Settings settings)
static int
SettingsTools. getQueryTimeout(int timeout, Settings settings)
static RenderKeywordCase
SettingsTools. getRenderKeywordCase(Settings settings)
Backwards compatible access toRenderKeywordCase
and/orRenderKeywordStyle
(the latter being deprecated).static RenderMapping
SettingsTools. getRenderMapping(Settings settings)
Lazy access toRenderMapping
.static RenderNameCase
SettingsTools. getRenderNameCase(Settings settings)
Backwards compatible access toRenderNameCase
and/orRenderNameStyle
(the latter being deprecated).static RenderQuotedNames
SettingsTools. getRenderQuotedNames(Settings settings)
Backwards compatible access toRenderQuotedNames
and/orRenderNameStyle
(the latter being deprecated).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 Locale
SettingsTools. renderLocale(Settings settings)
The render locale that is applicable, or the default locale if no such locale is configured.static boolean
SettingsTools. updatablePrimaryKeys(Settings settings)
Whether primary keys should be updatable. -
Uses of Settings in org.jooq.impl
Methods in org.jooq.impl that return Settings Modifier and Type Method Description Settings
DAOImpl. settings()
Settings
DefaultConfiguration. settings()
Methods in org.jooq.impl with parameters of type Settings Modifier and Type Method Description Configuration
DefaultConfiguration. derive(Settings newSettings)
Configuration
DefaultConfiguration. set(Settings newSettings)
void
DefaultConfiguration. setSettings(Settings newSettings)
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(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
Create an executor with a custom connection provider, a dialect and settings configured.static DSLContext
DSL. using(SQLDialect dialect, Settings settings)
Create an executor with a dialect and settings configured.Constructors in org.jooq.impl with parameters of type Settings Constructor Description DefaultDSLContext(Connection connection, SQLDialect dialect, Settings settings)
DefaultDSLContext(DataSource datasource, SQLDialect dialect, Settings settings)
DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
DefaultDSLContext(SQLDialect dialect, Settings settings)
-
Uses of Settings in org.jooq.tools.jdbc
Methods in org.jooq.tools.jdbc that return Settings Modifier and Type Method Description Settings
MockConfiguration. settings()
Methods in org.jooq.tools.jdbc with parameters of type Settings Modifier and Type Method Description Configuration
MockConfiguration. derive(Settings newSettings)
Configuration
MockConfiguration. set(Settings newSettings)
-