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> LoaderOptionsStep<R> |
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 any of the
unique keys' values are already in the database.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.onDuplicateKeyUpdate() |
Instruct the Loader to update duplicate records if any of
the unique keys' values are 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.
|