| 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 |
| Modifier and Type | Method and Description |
|---|---|
SQLDialect |
QueryPartInternal.getDialect()
Deprecated.
- 2.0.2 - The attached SQL dialect of a
QueryPart
should no longer be referenced, as query parts become more
and more Configuration - independent |
SQLDialect |
DataType.getDialect()
Retrieve the underlying
SQLDialect |
SQLDialect |
Configuration.getDialect()
Retrieve the configured dialect
|
static SQLDialect |
SQLDialect.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLDialect[] |
SQLDialect.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
RenderContext |
RenderContext.castModeSome(SQLDialect... dialects)
Set the new cast mode to
RenderContext.CastMode.SOME for a list of dialects |
| Modifier and Type | Method and Description |
|---|---|
SQLDialect |
FactoryProxy.getDialect()
Deprecated.
|
SQLDialect |
Factory.getDialect()
Retrieve the configured dialect
|
SQLDialect |
AbstractDataType.getDialect() |
| Modifier and Type | Method and Description |
|---|---|
static <T> DataType<T> |
FieldTypeHelper.getDataType(SQLDialect dialect,
Class<? extends T> type) |
protected static <T> DataType<T> |
AbstractDataType.getDataType(SQLDialect dialect,
Class<? extends T> type) |
protected static DataType<?> |
AbstractDataType.getDataType(SQLDialect dialect,
String typeName) |
protected static DataType<Object> |
AbstractDataType.getDefaultDataType(SQLDialect dialect,
String typeName) |
static DataType<?> |
FieldTypeHelper.getDialectDataType(SQLDialect dialect,
String t,
int p,
int s)
Convert a type name (using precision and scale) into a Java class
|
static Class<?> |
FieldTypeHelper.getDialectJavaType(SQLDialect dialect,
String t,
int p,
int s)
Convert a type name (using precision and scale) into a Java class
|
void |
FactoryProxy.setDialect(SQLDialect dialect)
Deprecated.
|
| Constructor and Description |
|---|
AbstractDataType(SQLDialect dialect,
SQLDataType<T> sqldatatype,
Class<? extends T> type,
String typeName) |
AbstractDataType(SQLDialect dialect,
SQLDataType<T> sqldatatype,
Class<? extends T> type,
String typeName,
boolean hasPrecisionAndScale) |
AbstractDataType(SQLDialect dialect,
SQLDataType<T> sqldatatype,
Class<? extends T> type,
String typeName,
String castTypeName) |
AbstractDataType(SQLDialect dialect,
SQLDataType<T> sqlDataType,
Class<? extends T> type,
String typeName,
String castTypeName,
boolean hasPrecisionAndScale) |
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema,
DataType<T> type)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema,
Package pkg)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema,
Package pkg,
DataType<T> type)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
Factory(Connection connection,
SQLDialect dialect)
Create a factory with a connection and a dialect configured.
|
Factory(Connection connection,
SQLDialect dialect,
SchemaMapping mapping)
Deprecated.
- 2.0.5 - Use
Factory.Factory(Connection, SQLDialect, Settings) instead |
Factory(Connection connection,
SQLDialect dialect,
Settings settings)
Create a factory with a connection, a dialect and settings configured.
|
Factory(DataSource datasource,
SQLDialect dialect)
Create a factory with a data source and a dialect configured.
|
Factory(DataSource datasource,
SQLDialect dialect,
Settings settings)
Create a factory with a data source, a dialect and settings configured.
|
Factory(SQLDialect dialect)
Create a factory with a dialect 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.
|
Copyright © 2013. All Rights Reserved.