| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.conf | |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| org.jooq.util.ase |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.CUBRID dialect |
| org.jooq.util.cubrid |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.ASE dialect |
| org.jooq.util.db2 |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.DB2 dialect |
| org.jooq.util.derby |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.DERBY dialect |
| org.jooq.util.firebird |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.FIREBIRD dialect |
| org.jooq.util.h2 |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.H2 dialect |
| org.jooq.util.hsqldb |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.HSQLDB dialect |
| org.jooq.util.ingres |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.INGRES dialect |
| org.jooq.util.mysql |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.ORACLE dialect |
| org.jooq.util.oracle |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.MYSQL dialect |
| org.jooq.util.postgres |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.POSTGRES dialect |
| org.jooq.util.sqlite |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.SQLITE dialect |
| org.jooq.util.sqlserver |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.SQLSERVER dialect |
| org.jooq.util.sybase |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.SYBASE dialect |
| Modifier and Type | Method and Description |
|---|---|
Settings |
Configuration.getSettings()
Retrieve the runtime configuration settings
|
| Constructor and Description |
|---|
SchemaMapping(Settings settings)
Deprecated.
Construct a mapping from a
Settings object |
| 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
If the JVM flag
-Dorg.jooq.settings points to a valid
settings file on the classpath, this will be loaded
If the JVM flag -Dorg.jooq.settings points to a valid
settings file on the file system, this will be loaded
If a valid settings file is found on the classpath at
/jooq-settings.xml, this will be loaded
Otherwise, a new Settings object is created with its
defaults
|
Settings |
Settings.withAttachRecords(Boolean value) |
Settings |
Settings.withExecuteListeners(Collection<String> values) |
Settings |
Settings.withExecuteListeners(List<String> executeListeners) |
Settings |
Settings.withExecuteListeners(String... values) |
Settings |
Settings.withExecuteLogging(Boolean value) |
Settings |
Settings.withExecuteWithOptimisticLocking(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) |
| 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 RenderMapping |
SettingsTools.getRenderMapping(Settings settings)
Lazy access to
RenderMapping |
static StatementType |
SettingsTools.getStatementType(Settings settings)
Get the statement type from the settings
|
| Modifier and Type | Method and Description |
|---|---|
Settings |
FactoryProxy.getSettings()
Deprecated.
|
Settings |
Factory.getSettings()
Retrieve the runtime configuration settings
|
| Modifier and Type | Method and Description |
|---|---|
void |
FactoryProxy.setSettings(Settings settings)
Deprecated.
|
| Constructor and Description |
|---|
Factory(Connection connection,
SQLDialect dialect,
Settings settings)
Create a factory with a connection, a dialect and settings configured.
|
Factory(DataSource datasource,
SQLDialect dialect,
Settings settings)
Create a factory with a data source, a dialect and settings configured.
|
Factory(SQLDialect dialect,
Settings settings)
Create a factory with a dialect and settings configured
Without a connection or data source, this factory cannot execute queries.
|
| Constructor and Description |
|---|
ASEFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
ASEFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
ASEFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
CUBRIDFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
CUBRIDFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
CUBRIDFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
DB2Factory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
DB2Factory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
DB2Factory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
DerbyFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
DerbyFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
DerbyFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
FirebirdFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
FirebirdFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
FirebirdFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
H2Factory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
H2Factory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
H2Factory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
HSQLDBFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
HSQLDBFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
HSQLDBFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
IngresFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
IngresFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
IngresFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
MySQLFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
MySQLFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
MySQLFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
OracleFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
OracleFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
OracleFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
PostgresFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
PostgresFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
PostgresFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
SQLiteFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
SQLiteFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
SQLiteFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
SQLServerFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
SQLServerFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
SQLServerFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
| Constructor and Description |
|---|
SybaseFactory(Connection connection,
Settings settings)
Create a factory with connection and a settings configured
|
SybaseFactory(DataSource dataSource,
Settings settings)
Create a factory with a data source and a settings configured
|
SybaseFactory(Settings settings)
Create a factory with settings configured
Without a connection, this factory cannot execute queries.
|
Copyright © 2013. All Rights Reserved.