| Package | Description |
|---|---|
| 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.types |
The
org.jooq.tools.types package contains data types that are
missing in JDBC
JDBC is missing some important SQL data types, such as INTERVAL types, or
UNSIGNED NUMBER types. |
| org.jooq.util.firebird |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.FIREBIRD dialect |
| org.jooq.util.hsqldb |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.HSQLDB 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 |
| Modifier and Type | Field and Description |
|---|---|
static SQLDataType<YearToMonth> |
SQLDataType.INTERVALYEARTOMONTH
The SQL standard
INTERVAL YEAR TO MONTH data type |
| Modifier and Type | Method and Description |
|---|---|
YearToMonth |
YearToMonth.abs() |
YearToMonth |
YearToMonth.neg() |
static YearToMonth |
YearToMonth.valueOf(String string)
Parse a string representation of a
INTERVAL YEAR TO MONTH |
| Modifier and Type | Method and Description |
|---|---|
int |
YearToMonth.compareTo(YearToMonth that) |
| Modifier and Type | Field and Description |
|---|---|
static FirebirdDataType<YearToMonth> |
FirebirdDataType.INTERVALYEARTOMONTH |
| Modifier and Type | Field and Description |
|---|---|
static HSQLDBDataType<YearToMonth> |
HSQLDBDataType.INTERVALYEARTOMONTH |
| Modifier and Type | Field and Description |
|---|---|
static OracleDataType<YearToMonth> |
OracleDataType.INTERVALYEARTOMONTH |
| Modifier and Type | Field and Description |
|---|---|
static PostgresDataType<YearToMonth> |
PostgresDataType.INTERVALYEARTOMONTH |
| Modifier and Type | Method and Description |
|---|---|
static YearToMonth |
PostgresUtils.toYearToMonth(Object pgInterval)
Convert a Postgres interval to a jOOQ
YEAR TO MONTH interval |
static YearToMonth |
PGIntervalConverter.toYearToMonth(Object pgInterval)
Deprecated.
- 2.3.0 - Use
PostgresUtils.toYearToMonth(Object)
methods instead |
| Modifier and Type | Method and Description |
|---|---|
static Object |
PostgresUtils.toPGInterval(YearToMonth interval)
Convert a jOOQ
YEAR TO MONTH interval to a Postgres representation |
static Object |
PGIntervalConverter.toPGInterval(YearToMonth interval)
Deprecated.
- 2.3.0 - Use
PostgresUtils.toPGInterval(YearToMonth)
methods instead |
Copyright © 2013. All Rights Reserved.