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(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.batch(Query query,
Object[]... bindings)
Execute a set of queries in batch mode (with bind values).
|
Batch |
DSLContext.batch(String... queries)
Execute a set of queries in batch mode (without bind values).
|
Batch |
DSLContext.batch(String sql,
Object[]... bindings)
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 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(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set of
INSERT queries
in batch mode (with bind values). |
Batch |
DSLContext.batchInsert(UpdatableRecord<?>... records)
Create a batch statement to execute a set of
INSERT queries
in batch mode (with bind values). |
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). |
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(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(Collection<? extends Query> queries) |
Batch |
DefaultDSLContext.batch(Query... queries) |
Batch |
DefaultDSLContext.batch(Query query,
Object[]... bindings) |
Batch |
DefaultDSLContext.batch(String... queries) |
Batch |
DefaultDSLContext.batch(String sql,
Object[]... bindings) |
Batch |
DefaultDSLContext.batchDelete(Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchDelete(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchInsert(Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchInsert(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchStore(Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchStore(UpdatableRecord<?>... records) |
Batch |
DefaultDSLContext.batchUpdate(Collection<? extends UpdatableRecord<?>> records) |
Batch |
DefaultDSLContext.batchUpdate(UpdatableRecord<?>... records) |
Copyright © 2014. All Rights Reserved.