Uses of Interface
org.jooq.LoaderOptionsStep
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of LoaderOptionsStep in org.jooq
Modifier and TypeMethodDescription@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.batchAfter
(int number) Batch a given number of bulk statements together.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.batchAll()
Batch all bulk statements in one JDBC batch statement.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.batchNone()
Do not batch bulk statements together.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.bulkAfter
(int number) Bulk-insert a given number of statements in a single multi-row bulk statement.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.bulkAll()
Bulk-insert all rows in a single multi-row bulk statement.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.bulkNone()
Do not bulk-insert rows in multi-row bulk statements.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.commitAfter
(int number) Commit after a certain number of batches.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.commitAll()
Commit only after inserting all batches.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.commitEach()
Commit each batch.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.commitNone()
Leave committing / rollbacking up to client code.<R extends Record>
@NotNull LoaderOptionsStep<R> Create a newLoader
object to load data from a CSV or XML source.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.onDuplicateKeyError()
Instruct theLoader
to cause an error in loading if there are any duplicate records.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.onDuplicateKeyIgnore()
Instruct theLoader
to skip duplicate records if any of the unique keys' values are already in the database.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.onDuplicateKeyUpdate()
Instruct theLoader
to update duplicate records if any of the unique keys' values are already in the database.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.onErrorAbort()
Instruct theLoader
to abort loading after the first error that might occur when inserting a record.@NotNull LoaderOptionsStep
<R> LoaderOptionsStep.onErrorIgnore()
Instruct theLoader
to ignore any errors that might occur when inserting a record. -
Uses of LoaderOptionsStep in org.jooq.impl