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 |
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 UpdatableRecord<R>> |
DSLContext.executeDelete(R record)
Delete a record from a table.
|
<R extends UpdatableRecord<R>> |
DSLContext.executeUpdate(R record)
Update a table.
|
<O extends UpdatableRecord<O>> |
TableRecord.fetchParent(ForeignKey<R,O> key)
Fetch a parent record of this record, given a foreign key
This returns a parent record referenced by this record through a given
foreign key.
|
Modifier and Type | Method and Description |
---|---|
Batch |
DSLContext.batchDelete(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
DELETE queries
in batch mode (with bind values). |
Batch |
DSLContext.batchInsert(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
INSERT queries
in batch mode (with bind values). |
Batch |
DSLContext.batchStore(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
INSERT and
UPDATE queries in batch mode (with bind values). |
Batch |
DSLContext.batchUpdate(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
UPDATE queries
in batch mode (with bind values). |
Modifier and Type | Method and Description |
---|---|
Batch |
DSLContext.batchDelete(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set of
DELETE in batch
mode (with bind values). |
Batch |
DSLContext.batchInsert(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set of
INSERT queries
in batch mode (with bind values). |
Batch |
DSLContext.batchStore(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set of
INSERT and
UPDATE queries in batch mode (with bind values). |
Batch |
DSLContext.batchUpdate(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set of
UPDATE queries
in batch mode (with bind values). |
Modifier and Type | Class and Description |
---|---|
class |
DAOImpl<R extends UpdatableRecord<R>,P,T>
A common base implementation for generated DAO's.
|
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 | Class and Description |
---|---|
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 UpdatableRecord<R>> |
DefaultDSLContext.executeDelete(R record) |
<R extends UpdatableRecord<R>> |
DefaultDSLContext.executeUpdate(R record) |
<O extends UpdatableRecord<O>> |
TableRecordImpl.fetchParent(ForeignKey<R,O> key) |
Modifier and Type | Method and Description |
---|---|
Batch |
DefaultDSLContext.batchDelete(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchInsert(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchStore(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchUpdate(UpdatableRecord<?>... records) |
Modifier and Type | Method and Description |
---|---|
Batch |
DefaultDSLContext.batchDelete(Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchInsert(Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchStore(Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchUpdate(Collection<? extends UpdatableRecord<?>> records) |
Copyright © 2014. All Rights Reserved.