Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
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(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(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.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.batchDelete(java.util.Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set of
DELETE in batch
mode (with bind values). |
Batch |
DSLContext.batchDelete(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
DELETE queries
in batch mode (with bind values). |
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). |
Batch |
DSLContext.batchInsert(TableRecord<?>... records)
Create a batch statement to execute a set of
INSERT queries
in batch mode (with bind values). |
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). |
Batch |
DSLContext.batchStore(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
INSERT and
UPDATE queries in batch mode (with bind values). |
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). |
Batch |
DSLContext.batchUpdate(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
UPDATE queries
in batch mode (with bind values). |
Modifier and Type | Method and Description |
---|---|
Batch |
DefaultDSLContext.batch(java.util.Collection<? extends Query> queries) |
Batch |
DefaultDSLContext.batch(Query... queries) |
Batch |
DefaultDSLContext.batch(Query query,
java.lang.Object[]... bindings) |
Batch |
DefaultDSLContext.batch(java.lang.String... queries) |
Batch |
DefaultDSLContext.batch(java.lang.String sql,
java.lang.Object[]... bindings) |
Batch |
DefaultDSLContext.batchDelete(java.util.Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchDelete(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchInsert(java.util.Collection<? extends TableRecord<?>> records) |
Batch |
DefaultDSLContext.batchInsert(TableRecord<?>... records) |
Batch |
DefaultDSLContext.batchStore(java.util.Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchStore(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchUpdate(java.util.Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchUpdate(UpdatableRecord<?>... records) |
Copyright © 2015. All Rights Reserved.