| 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 | 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>> |
FactoryOperations.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>> |
FactoryProxy.loadInto(Table<R> table)
Deprecated.
|
<R extends TableRecord<R>> |
Factory.loadInto(Table<R> table)
Create a new
Loader object to load data from a CSV or XML
source |
Copyright © 2013. All Rights Reserved.