Uses of Interface
org.jooq.UpdatableRecord
-
Packages that use UpdatableRecord Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of UpdatableRecord in org.jooq
Classes in org.jooq with type parameters of type UpdatableRecord Modifier and Type Interface Description 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 Modifier and Type Method Description <O extends UpdatableRecord<O>>
OTableRecord. fetchParent(ForeignKey<R,O> key)
Fetch a parent record of this record, given a foreign key.<O extends UpdatableRecord<O>>
Result<O>Result. fetchParents(ForeignKey<R,O> key)
Fetch parent records of this record, given a foreign key.Methods in org.jooq with parameters of type UpdatableRecord Modifier and Type Method Description Batch
DSLContext. batchDelete(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according todelete()
sematics.Batch
DSLContext. batchStore(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofINSERT
andUPDATE
queries in batch mode (with bind values) according tostore()
semantics.Batch
DSLContext. batchUpdate(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toupdate()
semantics.int
DSLContext. executeDelete(UpdatableRecord<?> record)
Delete a record from a table.int
DSLContext. executeUpdate(UpdatableRecord<?> record)
Update a table.Method parameters in org.jooq with type arguments of type UpdatableRecord Modifier and Type Method Description Batch
DSLContext. batchDelete(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according todelete()
sematics.Batch
DSLContext. batchStore(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofINSERT
andUPDATE
queries in batch mode (with bind values) according tostore()
semantics.Batch
DSLContext. batchUpdate(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toupdate()
semantics. -
Uses of UpdatableRecord in org.jooq.impl
Classes in org.jooq.impl with type parameters of type UpdatableRecord Modifier and Type Class Description class
DAOImpl<R extends UpdatableRecord<R>,P,T>
A common base implementation for generatedDAO
.class
UpdatableRecordImpl<R extends UpdatableRecord<R>>
A record implementation for a record holding a primary keyClasses in org.jooq.impl that implement UpdatableRecord Modifier and Type Class Description class
UpdatableRecordImpl<R extends UpdatableRecord<R>>
A record implementation for a record holding a primary keyMethods in org.jooq.impl with type parameters of type UpdatableRecord Modifier and Type Method Description <O extends UpdatableRecord<O>>
OTableRecordImpl. fetchParent(ForeignKey<R,O> key)
Methods in org.jooq.impl with parameters of type UpdatableRecord Modifier and Type Method Description Batch
DefaultDSLContext. batchDelete(UpdatableRecord<?>... records)
Batch
DefaultDSLContext. batchStore(UpdatableRecord<?>... records)
Batch
DefaultDSLContext. batchUpdate(UpdatableRecord<?>... records)
int
DefaultDSLContext. executeDelete(UpdatableRecord<?> record)
int
DefaultDSLContext. executeUpdate(UpdatableRecord<?> record)
Method parameters in org.jooq.impl with type arguments of type UpdatableRecord Modifier and Type Method Description Batch
DefaultDSLContext. batchDelete(Collection<? extends UpdatableRecord<?>> records)
Batch
DefaultDSLContext. batchStore(Collection<? extends UpdatableRecord<?>> records)
Batch
DefaultDSLContext. batchUpdate(Collection<? extends UpdatableRecord<?>> records)
-