Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
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 |
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>> |
FactoryOperations.executeDelete(R record)
Delete a record from a table
DELETE FROM [table] WHERE [record is supplied record] |
<R extends UpdatableRecord<R>> |
FactoryOperations.executeUpdate(R record)
Update a table
UPDATE [table] SET [modified values in record] WHERE [record is supplied record] |
Modifier and Type | Method and Description |
---|---|
Batch |
FactoryOperations.batchStore(UpdatableRecord<?>... records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Modifier and Type | Method and Description |
---|---|
Batch |
FactoryOperations.batchStore(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
INSERT and 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>> |
FactoryProxy.executeDelete(R record)
Deprecated.
|
<R extends UpdatableRecord<R>> |
Factory.executeDelete(R record)
Delete a record from a table
DELETE FROM [table] WHERE [record is supplied record] |
<R extends UpdatableRecord<R>> |
FactoryProxy.executeUpdate(R record)
Deprecated.
|
<R extends UpdatableRecord<R>> |
Factory.executeUpdate(R record)
Update a table
UPDATE [table] SET [modified values in record] WHERE [record is supplied record] |
Modifier and Type | Method and Description |
---|---|
Batch |
FactoryProxy.batchStore(UpdatableRecord<?>... records)
Deprecated.
|
Batch |
Factory.batchStore(UpdatableRecord<?>... records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Modifier and Type | Method and Description |
---|---|
Batch |
FactoryProxy.batchStore(Collection<? extends UpdatableRecord<?>> records)
Deprecated.
|
Batch |
Factory.batchStore(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Copyright © 2013. All Rights Reserved.