| 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 |
|---|---|
SQLDataType<T> |
DataType.getSQLDataType()
Get the standard SQL data type of this (dialect-specific) data type if
available.
|
| Modifier and Type | Field and Description |
|---|---|
static SQLDataType<Long> |
SQLDataType.BIGINT
The
Types.BIGINT type |
static SQLDataType<ULong> |
SQLDataType.BIGINTUNSIGNED
The unsigned
Types.BIGINT type |
static SQLDataType<byte[]> |
SQLDataType.BINARY
The
Types.BINARY type |
static SQLDataType<Boolean> |
SQLDataType.BIT
The
Types.BIT type |
static SQLDataType<byte[]> |
SQLDataType.BLOB
The
Types.BLOB type |
static SQLDataType<Boolean> |
SQLDataType.BOOLEAN
The
Types.BOOLEAN type |
static SQLDataType<String> |
SQLDataType.CHAR
The
Types.CHAR type |
static SQLDataType<String> |
SQLDataType.CLOB
The
Types.CLOB type |
static SQLDataType<Date> |
SQLDataType.DATE
The
Types.DATE type |
static SQLDataType<BigDecimal> |
SQLDataType.DECIMAL
The
Types.DECIMAL type |
static SQLDataType<BigInteger> |
SQLDataType.DECIMAL_INTEGER
The zero-scale
Types.DECIMAL type |
static SQLDataType<Double> |
SQLDataType.DOUBLE
The
Types.DOUBLE type |
static SQLDataType<Double> |
SQLDataType.FLOAT
The
Types.FLOAT type |
static SQLDataType<Integer> |
SQLDataType.INTEGER
The
Types.INTEGER type |
static SQLDataType<UInteger> |
SQLDataType.INTEGERUNSIGNED
The unsigned
Types.INTEGER type |
static SQLDataType<DayToSecond> |
SQLDataType.INTERVALDAYTOSECOND
The SQL standard
INTERVAL DAY TO SECOND data type |
static SQLDataType<YearToMonth> |
SQLDataType.INTERVALYEARTOMONTH
The SQL standard
INTERVAL YEAR TO MONTH data type |
static SQLDataType<String> |
SQLDataType.LONGNVARCHAR
The
Types.LONGNVARCHAR type |
static SQLDataType<byte[]> |
SQLDataType.LONGVARBINARY
The
Types.LONGVARBINARY type |
static SQLDataType<String> |
SQLDataType.LONGVARCHAR
The
Types.LONGVARCHAR type |
static SQLDataType<String> |
SQLDataType.NCHAR
The
Types.NCHAR type |
static SQLDataType<String> |
SQLDataType.NCLOB
The
Types.NCLOB type |
static SQLDataType<BigDecimal> |
SQLDataType.NUMERIC
The
Types.NUMERIC type |
static SQLDataType<String> |
SQLDataType.NVARCHAR
The
Types.NVARCHAR type |
static SQLDataType<Object> |
SQLDataType.OTHER
The
Types.OTHER type |
static SQLDataType<Float> |
SQLDataType.REAL
The
Types.REAL type |
static SQLDataType<Result<Record>> |
SQLDataType.RESULT
The
ResultSet type
This is not a SQL or JDBC standard. |
static SQLDataType<Short> |
SQLDataType.SMALLINT
The
Types.SMALLINT type |
static SQLDataType<UShort> |
SQLDataType.SMALLINTUNSIGNED
The unsigned
Types.SMALLINT type |
static SQLDataType<Time> |
SQLDataType.TIME
The
Types.TIME type |
static SQLDataType<Timestamp> |
SQLDataType.TIMESTAMP
The
Types.TIMESTAMP type |
static SQLDataType<Byte> |
SQLDataType.TINYINT
The
Types.TINYINT type |
static SQLDataType<UByte> |
SQLDataType.TINYINTUNSIGNED
The unsigned
Types.TINYINT type |
static SQLDataType<byte[]> |
SQLDataType.VARBINARY
The
Types.VARBINARY type |
static SQLDataType<String> |
SQLDataType.VARCHAR
The
Types.VARCHAR type |
| Modifier and Type | Method and Description |
|---|---|
SQLDataType<T> |
AbstractDataType.getSQLDataType() |
| 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) |
Copyright © 2013. All Rights Reserved.