Uses of Interface
org.jooq.LoaderOptionsStep

Packages that use LoaderOptionsStep
org.jooq   
org.jooq.impl   
 

Uses of LoaderOptionsStep in org.jooq
 

Methods in org.jooq that return LoaderOptionsStep
 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>>
LoaderOptionsStep<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.
 

Uses of LoaderOptionsStep in org.jooq.impl
 

Methods in org.jooq.impl that return LoaderOptionsStep
<R extends TableRecord<R>>
LoaderOptionsStep<R>
Factory.loadInto(Table<R> table)
          Create a new Loader object to load data from a CSV or XML source
 



Copyright © 2012. All Rights Reserved.