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.commitAfter(int number)
Commit after a certain number of inserted records.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.commitAll()
Commit only after inserting all records.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.commitEach()
Commit each loaded record.
|
LoaderOptionsStep<R> |
LoaderOptionsStep.commitNone()
Leave committing / rollbacking up to client code.
|
<R extends TableRecord<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 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 TableRecord<R>> |
DefaultDSLContext.loadInto(Table<R> table) |
Copyright © 2014. All Rights Reserved.