| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the 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 |
FactoryOperations.batch(Collection<? extends Query> queries)
Execute a set of queries in batch mode (without bind values).
|
Batch |
FactoryOperations.batch(Query... queries)
Execute a set of queries in batch mode (without bind values).
|
Batch |
FactoryOperations.batchStore(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Batch |
FactoryOperations.batchStore(UpdatableRecord<?>... records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
| Modifier and Type | Method and Description |
|---|---|
Batch |
FactoryProxy.batch(Collection<? extends Query> queries)
Deprecated.
|
Batch |
Factory.batch(Collection<? extends Query> queries)
Execute a set of queries in batch mode (without bind values).
|
Batch |
FactoryProxy.batch(Query... queries)
Deprecated.
|
Batch |
Factory.batch(Query... queries)
Execute a set of queries in batch mode (without bind values).
|
Batch |
FactoryProxy.batchStore(Collection<? extends UpdatableRecord<?>> records)
Deprecated.
|
Batch |
Factory.batchStore(Collection<? extends UpdatableRecord<?>> records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Batch |
FactoryProxy.batchStore(UpdatableRecord<?>... records)
Deprecated.
|
Batch |
Factory.batchStore(UpdatableRecord<?>... records)
Execute a set of
INSERT and UPDATE queries in
batch mode (with bind values). |
Copyright © 2013. All Rights Reserved.