|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Packages that use UpdatableRecord | |
|---|---|
| org.jooq | |
| org.jooq.impl | |
| Uses of UpdatableRecord in org.jooq |
|---|
| Classes in org.jooq with type parameters of type UpdatableRecord | |
|---|---|
interface |
UpdatableRecord<R extends UpdatableRecord<R>>
A common interface for records that can be stored back to the database again. |
| Methods in org.jooq with type parameters of type UpdatableRecord | ||
|---|---|---|
|
FactoryOperations.executeDelete(R record)
Delete a record from a table DELETE FROM [table] WHERE [record is supplied record] |
|
|
FactoryOperations.executeUpdate(R record)
Update a table UPDATE [table] SET [modified values in record] WHERE [record is supplied record] |
|
| Methods in org.jooq with parameters of type UpdatableRecord | |
|---|---|
Batch |
FactoryOperations.batchStore(UpdatableRecord<?>... records)
Execute a set of INSERT and UPDATE queries in
batch mode (with bind values). |
| Method parameters in org.jooq with type arguments of type UpdatableRecord | |
|---|---|
Batch |
FactoryOperations.batchStore(Collection<? extends UpdatableRecord<?>> records)
Execute a set of INSERT and UPDATE queries in
batch mode (with bind values). |
| Uses of UpdatableRecord in org.jooq.impl |
|---|
| Classes in org.jooq.impl with type parameters of type UpdatableRecord | |
|---|---|
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. |
| Classes in org.jooq.impl that implement UpdatableRecord | |
|---|---|
class |
UpdatableRecordImpl<R extends UpdatableRecord<R>>
A record implementation for a record holding a primary key This type is for JOOQ INTERNAL USE only. |
| Methods in org.jooq.impl with type parameters of type UpdatableRecord | ||
|---|---|---|
|
FactoryProxy.executeDelete(R record)
Deprecated. |
|
|
Factory.executeDelete(R record)
Delete a record from a table DELETE FROM [table] WHERE [record is supplied record] |
|
|
FactoryProxy.executeUpdate(R record)
Deprecated. |
|
|
Factory.executeUpdate(R record)
Update a table UPDATE [table] SET [modified values in record] WHERE [record is supplied record] |
|
| Methods in org.jooq.impl with parameters of type UpdatableRecord | |
|---|---|
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). |
| Method parameters in org.jooq.impl with type arguments of type UpdatableRecord | |
|---|---|
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). |
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||