| 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<DayToSecond> |
SQLDataType.INTERVALDAYTOSECOND
The SQL standard
INTERVAL DAY TO SECOND data type |
| Modifier and Type | Method and Description |
|---|---|
static Field<DayToSecond> |
Factory.timestampDiff(Field<Timestamp> timestamp1,
Field<Timestamp> timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type
This translates into any dialect |
static Field<DayToSecond> |
Factory.timestampDiff(Field<Timestamp> timestamp1,
Timestamp timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type
This translates into any dialect |
static Field<DayToSecond> |
Factory.timestampDiff(Timestamp timestamp1,
Field<Timestamp> timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type
This translates into any dialect |
static Field<DayToSecond> |
Factory.timestampDiff(Timestamp timestamp1,
Timestamp timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type
This translates into any dialect |
| Modifier and Type | Method and Description |
|---|---|
DayToSecond |
DayToSecond.abs() |
DayToSecond |
DayToSecond.neg() |
static DayToSecond |
DayToSecond.valueOf(double milli)
Load a
Double representation of a INTERVAL DAY TO SECOND |
static DayToSecond |
DayToSecond.valueOf(String string)
Parse a string representation of a
INTERVAL DAY TO SECOND |
| Modifier and Type | Method and Description |
|---|---|
int |
DayToSecond.compareTo(DayToSecond that) |
| Modifier and Type | Field and Description |
|---|---|
static FirebirdDataType<DayToSecond> |
FirebirdDataType.INTERVALDAYTOSECOND |
| Modifier and Type | Field and Description |
|---|---|
static HSQLDBDataType<DayToSecond> |
HSQLDBDataType.INTERVALDAYTOSECOND |
| Modifier and Type | Field and Description |
|---|---|
static OracleDataType<DayToSecond> |
OracleDataType.INTERVALDAYTOSECOND |
| Modifier and Type | Field and Description |
|---|---|
static PostgresDataType<DayToSecond> |
PostgresDataType.INTERVALDAYTOSECOND |
| Modifier and Type | Method and Description |
|---|---|
static DayToSecond |
PostgresUtils.toDayToSecond(Object pgInterval)
Convert a Postgres interval to a jOOQ
DAY TO SECOND interval |
static DayToSecond |
PGIntervalConverter.toDayToSecond(Object pgInterval)
Deprecated.
- 2.3.0 - Use
PostgresUtils.toDayToSecond(Object)
methods instead |
| Modifier and Type | Method and Description |
|---|---|
static Object |
PostgresUtils.toPGInterval(DayToSecond interval)
Convert a jOOQ
DAY TO SECOND interval to a Postgres representation |
static Object |
PGIntervalConverter.toPGInterval(DayToSecond interval)
Deprecated.
- 2.3.0 - Use
PostgresUtils.toPGInterval(DayToSecond)
methods instead |
Copyright © 2013. All Rights Reserved.