org.jooq
Interface LoaderCSVOptionsStep<R extends TableRecord<R>>

All Superinterfaces:
LoaderLoadStep<R>

public interface LoaderCSVOptionsStep<R extends TableRecord<R>>
extends LoaderLoadStep<R>

The Loader API is used for configuring data loads.

The step in constructing the Loader object where you can set the optional CSV loader options.

Author:
Lukas Eder

Method Summary
 LoaderCSVOptionsStep<R> ignoreRows(int number)
          Specify that a certain number of rows should be ignored from the CSV file.
 LoaderCSVOptionsStep<R> quote(char quote)
          Specify the quote character.
 LoaderCSVOptionsStep<R> separator(char separator)
          Specify the separator character.
 
Methods inherited from interface org.jooq.LoaderLoadStep
execute
 

Method Detail

ignoreRows

LoaderCSVOptionsStep<R> ignoreRows(int number)
Specify that a certain number of rows should be ignored from the CSV file. This is useful for skipping processing information

By default, this is set to 1, as CSV files are expected to hold a header row.

Parameters:
number - The number of rows to ignore.

quote

LoaderCSVOptionsStep<R> quote(char quote)
Specify the quote character. By default, this is "


separator

LoaderCSVOptionsStep<R> separator(char separator)
Specify the separator character. By default, this is ,



Copyright © 2012. All Rights Reserved.