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 | Method and Description |
---|---|
LoaderOptionsStep<R> |
LoaderOptionsStep.batchAfter(int number)
Batch a given number of bulk statements together.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.batchAll()
Batch all bulk statements in one JDBC batch statement.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.batchNone()
Do not batch bulk statements together.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.bulkAfter(int number)
Bulk-insert a given number of statements in a single multi-row bulk
statement.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.bulkAll()
Bulk-insert all rows in a single multi-row bulk statement.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.bulkNone()
Do not bulk-insert rows in multi-row bulk statements.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.commitAfter(int number)
Commit after a certain number of batches.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.commitAll()
Commit only after inserting all batches.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.commitEach()
Commit each batch.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.commitNone()
Leave committing / rollbacking up to client code.
|
<R extends Record> |
DSLContext.loadInto(Table<R> table)
Create a new
Loader object to load data from a CSV or XML
source. |
LoaderOptionsStep<R> |
LoaderOptionsStep.onDuplicateKeyError()
Instruct the
Loader to cause an error in loading if there
are any duplicate records. |
LoaderOptionsStep<R> |
LoaderOptionsStep.onDuplicateKeyIgnore()
Instruct the
Loader to skip duplicate records if the main
unique key's value is already in the database. |
LoaderOptionsStep<R> |
LoaderOptionsStep.onDuplicateKeyUpdate()
Instruct the
Loader to update duplicate records if the main
unique key's value is already in the database. |
LoaderOptionsStep<R> |
LoaderOptionsStep.onErrorAbort()
Instruct the
Loader to abort loading after the first error
that might occur when inserting a record. |
LoaderOptionsStep<R> |
LoaderOptionsStep.onErrorIgnore()
Instruct the
Loader to ignore any errors that might occur
when inserting a record. |
Modifier and Type | Method and Description |
---|---|
<R extends Record> |
DefaultDSLContext.loadInto(Table<R> table) |
Copyright © 2016. All Rights Reserved.