Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Interface and Description |
---|---|
interface |
DAO<R extends TableRecord<R>,P,T>
A generic DAO interface for a pojo and a primary key type.
|
interface |
Loader<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderCSVOptionsStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderCSVStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderJSONOptionsStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderJSONStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderLoadStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderOptionsStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderSourceStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
LoaderXMLStep<R extends TableRecord<R>>
The
Loader API is used for configuring data loads. |
interface |
TableRecord<R extends TableRecord<R>>
A record originating from a single table
|
Modifier and Type | Interface and Description |
---|---|
interface |
UpdatableRecord<R extends UpdatableRecord<R>>
A common interface for records that can be stored back to the database again.
|
Modifier and Type | Method and Description |
---|---|
<R extends TableRecord<R>,T> |
DSLContext.executeDelete(R record,
Condition condition)
Delete a record from a table.
|
<R extends TableRecord<R>> |
DSLContext.executeInsert(R record)
Insert one record.
|
<R extends TableRecord<R>,T> |
DSLContext.executeUpdate(R record,
Condition condition)
Update a table.
|
<O extends TableRecord<O>> |
UpdatableRecord.fetchChild(ForeignKey<O,R> key)
Fetch a child record of this record, given a foreign key
This returns a child record referencing this record through a given
foreign key.
|
<O extends TableRecord<O>> |
UpdatableRecord.fetchChildren(ForeignKey<O,R> key)
Fetch child records of this record, given a foreign key
This returns childs record referencing this record through a given
foreign key.
|
<R extends TableRecord<R>> |
DSLContext.loadInto(Table<R> table)
Create a new
Loader object to load data from a CSV or XML
source. |
Modifier and Type | Class and Description |
---|---|
class |
CustomRecord<R extends TableRecord<R>>
A base class for custom
TableRecord implementations in client code. |
class |
CustomTable<R extends TableRecord<R>>
A base class for custom
Table implementations in client code. |
class |
TableRecordImpl<R extends TableRecord<R>>
A record implementation for a record originating from a single table
This type is for JOOQ INTERNAL USE only.
|
Modifier and Type | Class and Description |
---|---|
class |
CustomRecord<R extends TableRecord<R>>
A base class for custom
TableRecord implementations in client code. |
class |
TableRecordImpl<R extends TableRecord<R>>
A record implementation for a record originating from a single table
This type is for JOOQ INTERNAL USE only.
|
class |
UpdatableRecordImpl<R extends UpdatableRecord<R>>
A record implementation for a record holding a primary key
This type is for JOOQ INTERNAL USE only.
|
Modifier and Type | Method and Description |
---|---|
<R extends TableRecord<R>,T> |
DefaultDSLContext.executeDelete(R record,
Condition condition) |
<R extends TableRecord<R>> |
DefaultDSLContext.executeInsert(R record) |
<R extends TableRecord<R>,T> |
DefaultDSLContext.executeUpdate(R record,
Condition condition) |
<O extends TableRecord<O>> |
UpdatableRecordImpl.fetchChild(ForeignKey<O,R> key) |
<O extends TableRecord<O>> |
UpdatableRecordImpl.fetchChildren(ForeignKey<O,R> key) |
<R extends TableRecord<R>> |
DefaultDSLContext.loadInto(Table<R> table) |
Copyright © 2014. All Rights Reserved.