| 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.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.tools |
The
org.jooq.tools package contains jOOQ's public utilities |
| 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 |
| Class and Description |
|---|
| Adapter
Deprecated.
- 2.5.0 [#1639] - This part of the internal API will be removed
in the near future. Do not reuse.
|
| AggregateFunction
An aggregate function is a special field that is usually used in a
GROUP BY context. |
| AliasProvider
Deprecated.
- 2.6.0 [#1800] - This marker interface will be removed in future
versions of jOOQ
|
| ArrayRecord
A "record" that encapsulates an Oracle-style ARRAY (or VARRAY), additionally
providing some convenience methods
|
| Attachable
An object in jOOQ that can have an underlying
Configuration attached
or detached. |
| Batch
A wrapper for a JDBC batch operation.
|
| BatchBindStep
This type is used for the
Batch's DSL API. |
| BetweenAndStep
An intermediate DSL type for the construction of a
BETWEEN
predicate. |
| BindContext
The bind context is used for binding
QueryPart's and their contained
values to a PreparedStatement's bind variables. |
| CaseConditionStep
The final step in creating a case statement of the type
CASE WHEN x < 1 THEN 'one'
WHEN x >= 2 THEN 'two'
ELSE 'three'
END
|
| CaseValueStep
An intermediary step in creating a case statement of the type
CASE x WHEN 1 THEN 'one'
WHEN 2 THEN 'two'
ELSE 'three'
END
|
| CaseWhenStep
The final step in creating a case statement of the type
CASE x WHEN 1 THEN 'one'
WHEN 2 THEN 'two'
ELSE 'three'
END
|
| Comparator
A comparator to be used in conditions
|
| Condition
A condition to be used in a query's where part
|
| ConditionProvider
Deprecated.
- 2.6.0 [#1881] - This type will be removed from the public API,
soon. Its methods will be pushed down into extending interfaces.
Do not reference this type directly.
|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| ConfigurationProvider
Deprecated.
- 2.1.0 [#1191] - Use
ExecuteListener.start(ExecuteContext) instead to provide
jOOQ with valid connections |
| Context
A context type that is used for rendering SQL or for binding
This interface is for JOOQ INTERNAL USE only.
|
| Converter
A
Converter for data types. |
| Cursor
Cursors allow for lazy, sequential access to an underlying JDBC
ResultSet. |
| DataType
A common interface to all dialect-specific data types
|
| DatePart
A date part can be used with SQL functions such as extract().
|
| Delete
A
Query that can delete data in the database. |
| DeleteConditionStep
This type is used for the
Delete's DSL API. |
| DeleteFinalStep
This type is used for the
Delete's DSL API. |
| DeleteQuery
A query used for deletion of data
|
| DeleteWhereStep
This type is used for the
Delete's DSL API. |
| DivideByOnConditionStep
An intermediate type for the construction of a relational division.
|
| DivideByOnStep
An intermediate type for the construction of a relational division
|
| DivideByReturningStep
An intermediate type for the construction of a relational division
|
| EnumType
A SQL enum type.
|
| ExecuteContext
A context object for
Query execution passed to registered
ExecuteListener's. |
| ExecuteType
The type of database interaction that is being executed with this context.
|
| Field
A field used in tables and conditions
|
| FieldLike
An object that can behave like a field (a field-like object)
|
| FieldProvider |
| ForeignKey
A
ForeignKey is an object referencing a UniqueKey. |
| FutureResult
Fetch results asynchronously.
|
| GroupConcatSeparatorStep
MySQL's
GROUP_CONCAT function. |
| Identity
An
Identity is an object representing an IDENTITY
column as understood by the SQL:2003 standard. |
| Insert
A
Query that can insert data in the database. |
| InsertFinalStep
This type is used for the
Insert's DSL API. |
| InsertOnDuplicateSetMoreStep
This type is used for the
Insert's DSL API. |
| InsertOnDuplicateSetStep
This type is used for the
Insert's DSL API. |
| InsertOnDuplicateStep
This type is used for the
Insert's DSL API. |
| InsertQuery
A query for data insertion
|
| InsertResultStep
This type is used for the
Insert's DSL API. |
| InsertReturningStep
This type is used for the
Insert's DSL API. |
| InsertSetMoreStep
This type is used for the
Insert's alternative DSL API. |
| InsertSetStep
This type is used for the
Insert's alternative DSL API. |
| InsertValuesStep
This type is used for the
Insert's DSL API. |
| JoinType
The type of join
|
| Key
A
Key is an object representing a UNIQUE KEY, a
PRIMARY KEY, or a FOREIGN KEY. |
| Loader
The
Loader API is used for configuring data loads. |
| LoaderCSVOptionsStep
The
Loader API is used for configuring data loads. |
| LoaderCSVStep
The
Loader API is used for configuring data loads. |
| LoaderError
An error that occurred during loading.
|
| LoaderLoadStep
The
Loader API is used for configuring data loads. |
| LoaderOptionsStep
The
Loader API is used for configuring data loads. |
| LoaderSourceStep
The
Loader API is used for configuring data loads. |
| LoaderXMLStep
The
Loader API is used for configuring data loads. |
| LockProvider
Deprecated.
- 2.6.0 [#1881] - This type will be removed from the public API,
soon. Its methods will be pushed down into extending interfaces.
Do not reference this type directly.
|
| MasterDataType
Deprecated.
- 2.5.0 [#1741] - This feature will be removed as of jOOQ 3.0
|
| Merge
A
Query that can merge data in the database. |
| MergeFinalStep
This type is used for the
Merge's DSL API. |
| MergeKeyStep
This type is used for the H2-specific variant of the
Merge's DSL API. |
| MergeMatchedDeleteStep
This type is used for the
Merge's DSL API. |
| MergeMatchedSetMoreStep
This type is used for the
Merge's DSL API. |
| MergeMatchedSetStep
This type is used for the
Merge's DSL API. |
| MergeMatchedStep
This type is used for the
Merge's DSL API. |
| MergeMatchedWhereStep
This type is used for the
Merge's DSL API. |
| MergeNotMatchedSetMoreStep
This type is used for the
Merge's DSL API. |
| MergeNotMatchedSetStep
This type is used for the
Merge's DSL API. |
| MergeNotMatchedStep
This type is used for the
Merge's DSL API. |
| MergeNotMatchedValuesStep
This type is used for the
Merge's DSL API. |
| MergeNotMatchedWhereStep
This type is used for the
Merge's DSL API. |
| MergeOnConditionStep
This type is used for the
Merge's DSL API. |
| MergeOnStep
This type is used for the
Merge's DSL API. |
| MergeUsingStep
This type is used for the
Merge's DSL API. |
| MergeValuesStep
This type is used for the H2-specific variant of the
Merge's DSL API. |
| NamedQueryPart
Deprecated.
- 2.6.0 [#1869] - This marker interface does not have enough
momentum to be exposed in the public API. It will be removed in
the future.
|
| NamedTypeProviderQueryPart
Deprecated.
- 2.6.0 [#1870] - This marker interface does not have enough
momentum to be exposed in the public API. It will be removed in
the future.
|
| Operator
An operator used for combining conditions
|
| OrderProvider
Deprecated.
- 2.6.0 [#1881] - This type will be removed from the public API,
soon. Its methods will be pushed down into extending interfaces.
Do not reference this type directly.
|
| Package
A container for stored procedures and functions
This is only supported in the
SQLDialect.ORACLE dialect |
| Param
A named parameter and/or bind value.
|
| Parameter
A parameter to a stored procedure or function.
|
| PivotForStep
This type is used for the Oracle
PIVOT clause DSL API, pivoting
Table objects to new tables. |
| PivotInStep
This type is used for the Oracle
PIVOT clause DSL API, pivoting
Table objects to new tables. |
| Query
Any query
|
| QueryPart
The common base type for all objects that can be used for query composition.
|
| Record
A wrapper for database result records returned by
|
| RecordHandler
A
RecordHandler is a handler that can receive Record
objects, when fetching data from the database. |
| RecordMapper
A
RecordMapper is a mapper that can receive Record
objects, when fetching data from the database, transforming them into a
custom type <E> |
| RenderContext
The render context is used for rendering
QueryPart's to SQL. |
| RenderContext.CastMode
The cast mode for bind values.
|
| Result
A wrapper for database results returned by
|
| ResultQuery
A query that can return results.
|
| Routine
A routine is a callable object in your RDBMS.
|
| Row
A model type for a row value expression.
|
| Row1
A model type for a row value expression with degree
1
Note: Not all databases support row value expressions, but many row value
expression operations can be simulated on all databases. |
| Row2
A model type for a row value expression with degree
2
Note: Not all databases support row value expressions, but many row value
expression operations can be simulated on all databases. |
| Row3
A model type for a row value expression with degree
3
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row4
A model type for a row value expression with degree
4
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row5
A model type for a row value expression with degree
5
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row6
A model type for a row value expression with degree
6
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row7
A model type for a row value expression with degree
7
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row8
A model type for a row value expression with degree
8
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| RowN
A model type for a row value expression with degree
N > 8
Note: Not all databases support row value expressions, but many row value
expression operations can be simulated on all databases. |
| Schema
An entity representing a database schema
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| SchemaProvider
Deprecated.
- 2.5.0 [#1580] - The
org.jooq.SchemaProvider marker
interface has not proven to be useful to the public API so far.
There is no real need to abstract its implementations with a
single interface |
| Select |
| SelectConditionStep |
| SelectConnectByConditionStep |
| SelectConnectByStep |
| SelectFinalStep |
| SelectForUpdateOfStep |
| SelectForUpdateStep |
| SelectForUpdateWaitStep |
| SelectFromStep |
| SelectGroupByStep |
| SelectHavingConditionStep |
| SelectHavingStep |
| SelectJoinPartitionByStep |
| SelectJoinStep |
| SelectLimitStep |
| SelectOffsetStep |
| SelectOnConditionStep |
| SelectOnStep |
| SelectOptionalOnStep |
| SelectOrderByStep |
| SelectQuery
A query for data selection
|
| SelectSelectStep |
| SelectStartWithStep |
| SelectWhereStep |
| Sequence
A type representing sequences in databases that support this.
|
| SimpleSelectConditionStep |
| SimpleSelectFinalStep |
| SimpleSelectForUpdateOfStep |
| SimpleSelectForUpdateStep |
| SimpleSelectForUpdateWaitStep |
| SimpleSelectLimitStep |
| SimpleSelectOffsetStep |
| SimpleSelectOrderByStep |
| SimpleSelectQuery
A simple select query that provides Records from a single table, with no
joins allowed.
|
| SimpleSelectWhereStep |
| SortField |
| SortOrder
The sorting order used in OrderByFieldLists
|
| SQLDialect
This enumeration lists all supported dialects.
|
| Store
Deprecated.
- 2.6.0 [#1840] - This type provides no useful abstraction over
Record and ArrayRecord and will be removed in the
future. Do not reference it directly. |
| StoreQuery
A query storing objects to the database.
|
| Support
A formal declaration of whether any API element is supported by a given
SQLDialect
The annotation is mainly used in three modes:
The annotation is absent on a method. |
| Table
A table to be used in queries
|
| TableField
A field contained in a table
|
| TableLike
An object that can behave like a table (a table-like object)
|
| TableOnConditionStep
An intermediate (optional) type for the construction of a
JOIN
clause, where the join criteria is added using an ON clause
(with a Condition. |
| TableOnStep |
| TableOptionalOnStep |
| TablePartitionByStep
An intermediate type for the construction of a partitioned
SQLDialect.ORACLE OUTER JOIN clause. |
| TableRecord
A record originating from a single table
|
| Truncate
A
Query that can truncate a table in the database. |
| Type
Deprecated.
|
| UDT
UDT definition
|
| UDTRecord
An object holding data of a UDT
|
| UniqueKey
A
UniqueKey is an object representing a UNIQUE KEY
or a PRIMARY KEY. |
| Updatable
A common interface for objects (tables, records) that can be updated or
deleted using their primary keys.
|
| UpdatableRecord
A common interface for records that can be stored back to the database again.
|
| UpdatableTable
A common interface for tables whose records can be stored back to the
database again.
|
| Update
A
Query that can update data in the database. |
| UpdateConditionStep
This type is used for the
Update's DSL API. |
| UpdateFinalStep
This type is used for the
Update's DSL API. |
| UpdateQuery
A query for data updating
|
| UpdateSetMoreStep
This type is used for the
Update's DSL API. |
| UpdateSetStep
This type is used for the
Update's DSL API. |
| UpdateWhereStep
This type is used for the
Update's DSL API. |
| WindowBeforeOverStep
This type is used for the window function DSL API.
|
| WindowFinalStep
This type is used for the window function DSL API.
|
| WindowIgnoreNullsStep
This type is used for the window function DSL API.
|
| WindowOrderByStep
This type is used for the window function DSL API.
|
| WindowOverStep
This type is used for the window function DSL API.
|
| WindowPartitionByStep
This type is used for the window function DSL API.
|
| WindowRowsAndStep
This type is used for the window function DSL API.
|
| WindowRowsStep
This type is used for the window function DSL API.
|
| Class and Description |
|---|
| Adapter
Deprecated.
- 2.5.0 [#1639] - This part of the internal API will be removed
in the near future. Do not reuse.
|
| AggregateFunction
An aggregate function is a special field that is usually used in a
GROUP BY context. |
| AliasProvider
Deprecated.
- 2.6.0 [#1800] - This marker interface will be removed in future
versions of jOOQ
|
| ArrayRecord
A "record" that encapsulates an Oracle-style ARRAY (or VARRAY), additionally
providing some convenience methods
|
| Attachable
An object in jOOQ that can have an underlying
Configuration attached
or detached. |
| AttachableInternal
Base functionality declaration for all
Attachables
This interface is for JOOQ INTERNAL USE only. |
| Batch
A wrapper for a JDBC batch operation.
|
| BatchBindStep
This type is used for the
Batch's DSL API. |
| BindContext
The bind context is used for binding
QueryPart's and their contained
values to a PreparedStatement's bind variables. |
| Case
The SQL case statement.
|
| Condition
A condition to be used in a query's where part
|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| Converter
A
Converter for data types. |
| Cursor
Cursors allow for lazy, sequential access to an underlying JDBC
ResultSet. |
| DAO
A generic DAO interface for a pojo and a primary key type.
|
| DataType
A common interface to all dialect-specific data types
|
| DatePart
A date part can be used with SQL functions such as extract().
|
| DeleteQuery
A query used for deletion of data
|
| DeleteWhereStep
This type is used for the
Delete's DSL API. |
| EnumType
A SQL enum type.
|
| ExecuteContext
A context object for
Query execution passed to registered
ExecuteListener's. |
| ExecuteListener |
| FactoryOperations
The public API for the jOOQ
Factory |
| Field
A field used in tables and conditions
|
| FieldProvider |
| ForeignKey
A
ForeignKey is an object referencing a UniqueKey. |
| GroupConcatOrderByStep
MySQL's
GROUP_CONCAT function. |
| Identity
An
Identity is an object representing an IDENTITY
column as understood by the SQL:2003 standard. |
| Insert
A
Query that can insert data in the database. |
| InsertQuery
A query for data insertion
|
| InsertSetStep
This type is used for the
Insert's alternative DSL API. |
| InsertValuesStep
This type is used for the
Insert's DSL API. |
| LoaderOptionsStep
The
Loader API is used for configuring data loads. |
| MasterDataType
Deprecated.
- 2.5.0 [#1741] - This feature will be removed as of jOOQ 3.0
|
| MergeKeyStep
This type is used for the H2-specific variant of the
Merge's DSL API. |
| MergeUsingStep
This type is used for the
Merge's DSL API. |
| Name
A SQL identifier
QueryPart
A Name is a QueryPart that renders a SQL identifier
according to the Settings.getRenderNameStyle(). |
| NamedQueryPart
Deprecated.
- 2.6.0 [#1869] - This marker interface does not have enough
momentum to be exposed in the public API. It will be removed in
the future.
|
| NamedTypeProviderQueryPart
Deprecated.
- 2.6.0 [#1870] - This marker interface does not have enough
momentum to be exposed in the public API. It will be removed in
the future.
|
| OrderedAggregateFunction
An ordered aggregate function.
|
| Package
A container for stored procedures and functions
This is only supported in the
SQLDialect.ORACLE dialect |
| Param
A named parameter and/or bind value.
|
| Parameter
A parameter to a stored procedure or function.
|
| Query
Any query
|
| QueryPart
The common base type for all objects that can be used for query composition.
|
| QueryPartInternal
Base functionality declaration for all query objects
This interface is for JOOQ INTERNAL USE only.
|
| Record
A wrapper for database result records returned by
|
| RenderContext
The render context is used for rendering
QueryPart's to SQL. |
| Result
A wrapper for database results returned by
|
| ResultQuery
A query that can return results.
|
| Routine
A routine is a callable object in your RDBMS.
|
| Row1
A model type for a row value expression with degree
1
Note: Not all databases support row value expressions, but many row value
expression operations can be simulated on all databases. |
| Row2
A model type for a row value expression with degree
2
Note: Not all databases support row value expressions, but many row value
expression operations can be simulated on all databases. |
| Row3
A model type for a row value expression with degree
3
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row4
A model type for a row value expression with degree
4
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row5
A model type for a row value expression with degree
5
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row6
A model type for a row value expression with degree
6
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row7
A model type for a row value expression with degree
7
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| Row8
A model type for a row value expression with degree
8
Note: Not all databases support row value expressions, but many row value expression operations can be
simulated on all databases. |
| RowN
A model type for a row value expression with degree
N > 8
Note: Not all databases support row value expressions, but many row value
expression operations can be simulated on all databases. |
| Schema
An entity representing a database schema
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| SchemaProvider
Deprecated.
- 2.5.0 [#1580] - The
org.jooq.SchemaProvider marker
interface has not proven to be useful to the public API so far.
There is no real need to abstract its implementations with a
single interface |
| Select |
| SelectQuery
A query for data selection
|
| SelectSelectStep |
| Sequence
A type representing sequences in databases that support this.
|
| SimpleSelectQuery
A simple select query that provides Records from a single table, with no
joins allowed.
|
| SimpleSelectWhereStep |
| SQLDialect
This enumeration lists all supported dialects.
|
| Store
Deprecated.
- 2.6.0 [#1840] - This type provides no useful abstraction over
Record and ArrayRecord and will be removed in the
future. Do not reference it directly. |
| Support
A formal declaration of whether any API element is supported by a given
SQLDialect
The annotation is mainly used in three modes:
The annotation is absent on a method. |
| Table
A table to be used in queries
|
| TableField
A field contained in a table
|
| TableLike
An object that can behave like a table (a table-like object)
|
| TableRecord
A record originating from a single table
|
| Truncate
A
Query that can truncate a table in the database. |
| Type
Deprecated.
|
| UDT
UDT definition
|
| UDTField
A field contained in a UDT
|
| UDTRecord
An object holding data of a UDT
|
| UniqueKey
A
UniqueKey is an object representing a UNIQUE KEY
or a PRIMARY KEY. |
| Updatable
A common interface for objects (tables, records) that can be updated or
deleted using their primary keys.
|
| UpdatableRecord
A common interface for records that can be stored back to the database again.
|
| UpdatableTable
A common interface for tables whose records can be stored back to the
database again.
|
| UpdateQuery
A query for data updating
|
| UpdateSetStep
This type is used for the
Update's DSL API. |
| WindowIgnoreNullsStep
This type is used for the window function DSL API.
|
| WindowOverStep
This type is used for the window function DSL API.
|
| Class and Description |
|---|
| Converter
A
Converter for data types. |
| ExecuteContext
A context object for
Query execution passed to registered
ExecuteListener's. |
| ExecuteListener |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| Field
A field used in tables and conditions
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| Record
A wrapper for database result records returned by
|
| Result
A wrapper for database results returned by
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| Record
A wrapper for database result records returned by
|
| Result
A wrapper for database results returned by
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| EnumType
A SQL enum type.
|
| FactoryOperations
The public API for the jOOQ
Factory |
| Field
A field used in tables and conditions
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| Field
A field used in tables and conditions
|
| Record
A wrapper for database result records returned by
|
| Result
A wrapper for database results returned by
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Support
A formal declaration of whether any API element is supported by a given
SQLDialect
The annotation is mainly used in three modes:
The annotation is absent on a method. |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| Record
A wrapper for database result records returned by
|
| Result
A wrapper for database results returned by
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| Field
A field used in tables and conditions
|
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
| Class and Description |
|---|
| Configuration
The Configuration holds data about sql dialects, connections / data sources,
and custom settings as well as custom data.
|
| DataType
A common interface to all dialect-specific data types
|
| FactoryOperations
The public API for the jOOQ
Factory |
| SchemaMapping
Deprecated.
- 2.0.5 - Use runtime configuration
Settings instead |
Copyright © 2013. All Rights Reserved.