Uses of Interface
org.jooq.Batch
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Batch in org.jooq
Modifier and TypeMethodDescription@NotNull Batch
Create a batch statement to execute a set of queries in batch mode (without bind values).@NotNull Batch
Create a batch statement to execute a set of queries in batch mode (with bind values).@NotNull Batch
DSLContext.batch(Collection<? extends Query> queries)
Create a batch statement to execute a set of queries in batch mode (without bind values).@NotNull Batch
Create a batch statement to execute a set of queries in batch mode (without bind values).@NotNull Batch
Create a batch statement to execute a set of queries in batch mode (without bind values).@NotNull Batch
Create a batch statement to execute a set of queries in batch mode (with bind values).@NotNull Batch
DSLContext.batchDelete(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according toUpdatableRecord.delete()
sematics.@NotNull Batch
DSLContext.batchDelete(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according toUpdatableRecord.delete()
sematics.@NotNull Batch
DSLContext.batchInsert(Collection<? extends TableRecord<?>> records)
Create a batch statement to execute a set ofINSERT
queries in batch mode (with bind values) according toTableRecord.insert()
semantics.@NotNull Batch
DSLContext.batchInsert(TableRecord<?>... records)
Create a batch statement to execute a set ofINSERT
queries in batch mode (with bind values) according toTableRecord.insert()
semantics.@NotNull Batch
DSLContext.batchMerge(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofMERGE
queries in batch mode (with bind values) according toUpdatableRecord.merge()
semantics.@NotNull Batch
DSLContext.batchMerge(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofMERGE
queries in batch mode (with bind values) according toUpdatableRecord.merge()
semantics.@NotNull 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 toUpdatableRecord.store()
semantics.@NotNull Batch
DSLContext.batchStore(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofINSERT
andUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.store()
semantics.@NotNull Batch
DSLContext.batchUpdate(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.update()
semantics.@NotNull Batch
DSLContext.batchUpdate(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.update()
semantics. -
Uses of Batch in org.jooq.impl
Modifier and TypeMethodDescriptionDefaultDSLContext.batch(Collection<? extends Query> queries)
DefaultDSLContext.batchDelete(Collection<? extends UpdatableRecord<?>> records)
DefaultDSLContext.batchDelete(UpdatableRecord<?>... records)
DefaultDSLContext.batchInsert(Collection<? extends TableRecord<?>> records)
DefaultDSLContext.batchInsert(TableRecord<?>... records)
DefaultDSLContext.batchMerge(Collection<? extends UpdatableRecord<?>> records)
DefaultDSLContext.batchMerge(UpdatableRecord<?>... records)
DefaultDSLContext.batchStore(Collection<? extends UpdatableRecord<?>> records)
DefaultDSLContext.batchStore(UpdatableRecord<?>... records)
DefaultDSLContext.batchUpdate(Collection<? extends UpdatableRecord<?>> records)
DefaultDSLContext.batchUpdate(UpdatableRecord<?>... records)