Batch |
DSLContext.batch(String... queries) |
Create a batch statement to execute a set of queries in batch mode
(without bind values).
|
Batch |
DSLContext.batch(String sql,
Object[]... bindings) |
Create a batch statement to execute a set of queries in batch mode (with
bind values).
|
Batch |
DSLContext.batch(Collection<? extends Query> queries) |
Create a batch statement to execute a set of queries in batch mode
(without bind values).
|
Batch |
DSLContext.batch(Queries queries) |
Create a batch statement to execute a set of queries in batch mode
(without bind values).
|
Batch |
DSLContext.batch(Query... queries) |
Create a batch statement to execute a set of queries in batch mode
(without bind values).
|
Batch |
DSLContext.batch(Query query,
Object[]... bindings) |
Create a batch statement to execute a set of queries in batch mode (with
bind values).
|
Batch |
DSLContext.batchDelete(Collection<? extends UpdatableRecord<?>> records) |
Create a batch statement to execute a set of DELETE queries
in batch mode (with bind values) according to
UpdatableRecord.delete() sematics.
|
Batch |
DSLContext.batchDelete(UpdatableRecord<?>... records) |
Create a batch statement to execute a set of DELETE queries
in batch mode (with bind values) according to
UpdatableRecord.delete() sematics.
|
Batch |
DSLContext.batchInsert(Collection<? extends TableRecord<?>> records) |
Create a batch statement to execute a set of INSERT queries
in batch mode (with bind values) according to
TableRecord.insert() semantics.
|
Batch |
DSLContext.batchInsert(TableRecord<?>... records) |
Create a batch statement to execute a set of INSERT queries
in batch mode (with bind values) according to
TableRecord.insert() semantics.
|
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) according to
UpdatableRecord.store() semantics.
|
Batch |
DSLContext.batchStore(UpdatableRecord<?>... records) |
Create a batch statement to execute a set of INSERT and
UPDATE queries in batch mode (with bind values) according to
UpdatableRecord.store() semantics.
|
Batch |
DSLContext.batchUpdate(Collection<? extends UpdatableRecord<?>> records) |
Create a batch statement to execute a set of UPDATE queries
in batch mode (with bind values) according to
UpdatableRecord.update() semantics.
|
Batch |
DSLContext.batchUpdate(UpdatableRecord<?>... records) |
Create a batch statement to execute a set of UPDATE queries
in batch mode (with bind values) according to
UpdatableRecord.update() semantics.
|