com.sas.storage.jdbc.export
Interface ExportDelimiters


public interface ExportDelimiters

Delimiters used to export to Comma Separated Values (CSV) or to Tab Separated Values (TSV).

Since:
3.1

Field Summary
static java.lang.String CARRIAGE_RETURN
          Used to separate lines of data when exporting in CSV or TSV formats.
static java.lang.String COMMA
          Used to separate single piece of data when exporting in Comma Separated Values (CSV) format.
static java.lang.String TAB
          Used to separate single piece of data when exporting in Tab Separated Values (TSV) format.
 

Field Detail

COMMA

static final java.lang.String COMMA
Used to separate single piece of data when exporting in Comma Separated Values (CSV) format. ","

See Also:
Constant Field Values

TAB

static final java.lang.String TAB
Used to separate single piece of data when exporting in Tab Separated Values (TSV) format. "\t"

See Also:
Constant Field Values

CARRIAGE_RETURN

static final java.lang.String CARRIAGE_RETURN
Used to separate lines of data when exporting in CSV or TSV formats. "\n"

See Also:
Constant Field Values



Copyright © 2009 SAS Institute Inc. All Rights Reserved.