Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Interface and Description |
---|---|
interface |
BatchBindStep
This type is used for the
Batch 's DSL API. |
Modifier and Type | Method and Description |
---|---|
Batch |
DSLContext.batch(Collection<? extends Query> queries)
Execute a set of queries in batch mode (without bind values).
|
Batch |
DSLContext.batch(Query... queries)
Execute a set of queries in batch mode (without bind values).
|
Batch |
DSLContext.batchDelete(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
DELETE in batch mode (with bind values). |
Batch |
DSLContext.batchDelete(UpdatableRecord<?>... records)
Execute a set of
DELETE queries in batch mode (with bind
values). |
Batch |
DSLContext.batchInsert(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
INSERT queries in batch mode (with bind
values). |
Batch |
DSLContext.batchInsert(UpdatableRecord<?>... records)
Execute a set of
INSERT queries in batch mode (with bind
values). |
Batch |
DSLContext.batchStore(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Batch |
DSLContext.batchStore(UpdatableRecord<?>... records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Batch |
DSLContext.batchUpdate(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
UPDATE queries in batch mode (with bind
values). |
Batch |
DSLContext.batchUpdate(UpdatableRecord<?>... records)
Execute a set of
UPDATE queries in batch mode (with bind
values). |
Copyright © 2013. All Rights Reserved.