Modifier and Type | Method and Description |
---|---|
CSV.Format |
CSV.Format.alwaysEscapeOutput()
Indicates that the escape sequence should always be
used when writing values.
|
CSV.Format |
CSV.Format.clone() |
CSV.Format |
CSV.Format.escape(char e)
Set escape character.
|
CSV.Format |
CSV.Format.hasHeader()
Indicates that CSV file has header.
|
CSV.Format |
CSV.Format.lineComment(char lcc)
Set line comment character.
|
CSV.Format |
CSV.Format.lineComment(String lcs)
Deprecated.
As of release 1.4, replaced by
lineComment(char) . |
CSV.Format |
CSV.Format.lineSeparator(CSV.LineSeparator ls)
Set line separator.
|
CSV.Format |
CSV.Format.nullValue(String s)
Set string for representing NULL values.
|
CSV.Format |
CSV.Format.overrideConversion(JDBCType type,
Function<String,?> conv)
Override input conversion for given JDBC type.
|
CSV.Format |
CSV.Format.separator(char s)
Set separator.
|
CSV.Format |
CSV.Format.separator(String s)
Deprecated.
As of release 1.4, replaced by
separator(char) . |
CSV.Format |
CSV.Format.useReadConversions()
Indicates that string conversions should be used in
conjunction with
JDBDT.read(DataSource,CSV.Format,File) . |
Modifier and Type | Method and Description |
---|---|
static DataSet |
JDBDT.read(DataSource source,
CSV.Format format,
File file)
Read data set from CSV file.
|
static void |
JDBDT.write(DataSet dataSet,
CSV.Format format,
File file)
Write data set to CSV file.
|
Copyright © 2016–2021 JDBDT. All rights reserved.