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.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 | Interface and Description |
---|---|
interface |
BindContext
The bind context is used for binding
QueryPart 's and their contained
values to a PreparedStatement 's bind variables. |
interface |
Context<C extends Context<C>>
A context type that is used for rendering SQL or for binding
This interface is for JOOQ INTERNAL USE only.
|
interface |
ExecuteContext
A context object for
Query execution passed to registered
ExecuteListener 's. |
interface |
FactoryOperations
The public API for the jOOQ
Factory |
interface |
RenderContext
The render context is used for rendering
QueryPart 's to SQL. |
Modifier and Type | Method and Description |
---|---|
Configuration |
ExecuteContext.configuration()
The configuration wrapped by this context
|
Configuration |
AttachableInternal.getConfiguration()
Get the underlying configuration
|
static Configuration |
ConfigurationRegistry.provideFor(Configuration configuration)
Deprecated.
Communicate to client-registered
ConfigurationProvider 's
This method is used by jOOQ retrieve a client-provided
Configuration . |
Configuration |
ConfigurationProvider.provideFor(Configuration configuration)
Deprecated.
Provide a
Configuration to jOOQ, given a deserialised
Configuration . |
Modifier and Type | Method and Description |
---|---|
void |
QueryPart.attach(Configuration configuration)
Deprecated.
- 2.5.0 [#1544] - The Attachable type will no longer be part
of the QueryPart hierarchy. Please do not attach any
QueryPart objects anymore, except for
Query objects |
void |
Attachable.attach(Configuration configuration)
Attach this object to a new
Configuration |
int |
Routine.execute(Configuration configuration)
Execute the stored object using a
Configuration object |
String |
DataType.getCastTypeName(Configuration configuration)
Retrieve the dialect-specific type name associated with this data type
used for casting
This is useful for some dialects that have specialised type names for
cast expressions.
|
String |
DataType.getCastTypeName(Configuration configuration,
int length)
Retrieve the dialect-specific type name associated with this data type
used for casting
This is useful for some dialects that have specialised type names for
cast expressions.
|
String |
DataType.getCastTypeName(Configuration configuration,
int precision,
int scale)
Retrieve the dialect-specific type name associated with this data type
used for casting
This is useful for some dialects that have specialised type names for
cast expressions.
|
DataType<T> |
Parameter.getDataType(Configuration configuration)
The dialect-specific type of this parameter
|
DataType<T> |
NamedTypeProviderQueryPart.getDataType(Configuration configuration)
Deprecated.
The dialect-specific type of this object
|
DataType<T> |
Field.getDataType(Configuration configuration)
The dialect-specific type of this field
|
DataType<T> |
DataType.getDataType(Configuration configuration)
The dialect-specific data type representing this data type.
|
String |
DataType.getTypeName(Configuration configuration)
Retrieve the dialect-specific type name associated with this data type
|
static Configuration |
ConfigurationRegistry.provideFor(Configuration configuration)
Deprecated.
Communicate to client-registered
ConfigurationProvider 's
This method is used by jOOQ retrieve a client-provided
Configuration . |
Configuration |
ConfigurationProvider.provideFor(Configuration configuration)
Deprecated.
Provide a
Configuration to jOOQ, given a deserialised
Configuration . |
Constructor and Description |
---|
SchemaMapping(Configuration configuration)
Deprecated.
Construct a mapping from a
Configuration object |
Modifier and Type | Class and Description |
---|---|
class |
Factory
A factory providing implementations to the org.jooq interfaces
This factory is the main entry point for client code, to access jOOQ classes
and functionality.
|
class |
FactoryProxy
Deprecated.
- Use the newly
DataSource -enabled Factory
constructors instead, e.g.
Factory.Factory(DataSource, SQLDialect) or
Factory.Factory(DataSource, SQLDialect, Settings) |
Modifier and Type | Method and Description |
---|---|
Configuration |
AbstractRoutine.getConfiguration() |
Modifier and Type | Method and Description |
---|---|
void |
CustomTable.attach(Configuration configuration)
Deprecated.
|
void |
CustomField.attach(Configuration configuration)
Deprecated.
|
void |
CustomCondition.attach(Configuration configuration)
Deprecated.
|
void |
AbstractRoutine.attach(Configuration c) |
int |
AbstractRoutine.execute(Configuration c) |
String |
AbstractDataType.getCastTypeName(Configuration configuration) |
String |
AbstractDataType.getCastTypeName(Configuration configuration,
int length) |
String |
AbstractDataType.getCastTypeName(Configuration configuration,
int precision,
int scale) |
DataType<T> |
AbstractDataType.getDataType(Configuration configuration) |
static <T> T |
FieldTypeHelper.getFromSQLInput(Configuration configuration,
SQLInput stream,
Field<T> field) |
String |
AbstractDataType.getTypeName(Configuration configuration) |
Constructor and Description |
---|
ArrayRecordImpl(Schema schema,
String name,
DataType<T> type,
Configuration configuration)
Create an empty array record
|
ArrayRecordImpl(String name,
DataType<T> type,
Configuration configuration)
Deprecated.
- 2.0.5 [#1179] - Please regenerate your schema and use
ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType, Configuration)
instead |
Modifier and Type | Class and Description |
---|---|
class |
ASEFactory
A
SQLDialect.ASE specific factory |
Modifier and Type | Class and Description |
---|---|
class |
CUBRIDFactory
A
SQLDialect.CUBRID specific factory |
Modifier and Type | Class and Description |
---|---|
class |
DB2Factory
A
SQLDialect.DB2 specific factory |
Modifier and Type | Class and Description |
---|---|
class |
DerbyFactory
A
SQLDialect.DERBY specific factory |
Modifier and Type | Class and Description |
---|---|
class |
FirebirdFactory
A
SQLDialect.FIREBIRD specific factory |
Modifier and Type | Class and Description |
---|---|
class |
H2Factory
A
SQLDialect.H2 specific factory |
Modifier and Type | Class and Description |
---|---|
class |
HSQLDBFactory
A
SQLDialect.HSQLDB specific factory |
Modifier and Type | Class and Description |
---|---|
class |
IngresFactory
A
SQLDialect.INGRES specific factory |
Modifier and Type | Class and Description |
---|---|
class |
MySQLFactory
A
SQLDialect.MYSQL specific factory |
Modifier and Type | Class and Description |
---|---|
class |
OracleFactory
A
SQLDialect.ORACLE specific factory |
Modifier and Type | Class and Description |
---|---|
class |
PostgresFactory
A
SQLDialect.POSTGRES specific factory |
Modifier and Type | Class and Description |
---|---|
class |
SQLiteFactory
A
SQLDialect.SQLITE specific factory |
Modifier and Type | Class and Description |
---|---|
class |
SQLServerFactory
A
SQLDialect.SQLSERVER specific factory |
Modifier and Type | Class and Description |
---|---|
class |
SybaseFactory
A
SQLDialect.SYBASE specific factory |
Copyright © 2013. All Rights Reserved.