Batch |
DSLContext.batch(java.lang.String... queries) |
Create a batch statement to execute a set of queries in batch mode
(without bind values).
|
Batch |
DSLContext.batch(java.lang.String sql,
java.lang.Object[]... bindings) |
Create a batch statement to execute a set of queries in batch mode (with
bind values).
|
Batch |
DSLContext.batch(java.util.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,
java.lang.Object[]... bindings) |
Create a batch statement to execute a set of queries in batch mode (with
bind values).
|
Batch |
DSLContext.batchDelete(java.util.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(java.util.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(java.util.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(java.util.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.
|