Package | Description |
---|---|
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
org.jooq.types |
The
org.jooq.tools.types package contains data types that are
missing in JDBC. |
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.ORACLE 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 DataType<DayToSecond> |
SQLDataType.INTERVALDAYTOSECOND
The SQL standard
INTERVAL DAY TO SECOND data type. |
Modifier and Type | Method and Description |
---|---|
static Field<DayToSecond> |
DSL.timestampDiff(Field<Timestamp> timestamp1,
Field<Timestamp> timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type. |
static Field<DayToSecond> |
DSL.timestampDiff(Field<Timestamp> timestamp1,
Timestamp timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type. |
static Field<DayToSecond> |
DSL.timestampDiff(Timestamp timestamp1,
Field<Timestamp> timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type. |
static Field<DayToSecond> |
DSL.timestampDiff(Timestamp timestamp1,
Timestamp timestamp2)
Get the timestamp difference as a
INTERVAL DAY TO SECOND
type. |
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 DataType<DayToSecond> |
FirebirdDataType.INTERVALDAYTOSECOND |
Modifier and Type | Field and Description |
---|---|
static DataType<DayToSecond> |
HSQLDBDataType.INTERVALDAYTOSECOND |
Modifier and Type | Field and Description |
---|---|
static DataType<DayToSecond> |
OracleDataType.INTERVALDAYTOSECOND |
Modifier and Type | Field and Description |
---|---|
static DataType<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 |
Modifier and Type | Method and Description |
---|---|
static Object |
PostgresUtils.toPGInterval(DayToSecond interval)
Convert a jOOQ
DAY TO SECOND interval to a Postgres representation |
Copyright © 2014. All Rights Reserved.