Interface ExportContext.SqlCsvExportOptionsOrBuilder (0.1.0)

public static interface ExportContext.SqlCsvExportOptionsOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getEscapeCharacter()

public abstract String getEscapeCharacter()

Specifies the character that should appear before a data character that needs to be escaped.

string escape_character = 2;

Returns
Type Description
String

The escapeCharacter.

getEscapeCharacterBytes()

public abstract ByteString getEscapeCharacterBytes()

Specifies the character that should appear before a data character that needs to be escaped.

string escape_character = 2;

Returns
Type Description
ByteString

The bytes for escapeCharacter.

getFieldsTerminatedBy()

public abstract String getFieldsTerminatedBy()

Specifies the character that separates columns within each row (line) of the file.

string fields_terminated_by = 4;

Returns
Type Description
String

The fieldsTerminatedBy.

getFieldsTerminatedByBytes()

public abstract ByteString getFieldsTerminatedByBytes()

Specifies the character that separates columns within each row (line) of the file.

string fields_terminated_by = 4;

Returns
Type Description
ByteString

The bytes for fieldsTerminatedBy.

getLinesTerminatedBy()

public abstract String getLinesTerminatedBy()

This is used to separate lines. If a line does not contain all fields, the rest of the columns are set to their default values.

string lines_terminated_by = 6;

Returns
Type Description
String

The linesTerminatedBy.

getLinesTerminatedByBytes()

public abstract ByteString getLinesTerminatedByBytes()

This is used to separate lines. If a line does not contain all fields, the rest of the columns are set to their default values.

string lines_terminated_by = 6;

Returns
Type Description
ByteString

The bytes for linesTerminatedBy.

getQuoteCharacter()

public abstract String getQuoteCharacter()

Specifies the quoting character to be used when a data value is quoted.

string quote_character = 3;

Returns
Type Description
String

The quoteCharacter.

getQuoteCharacterBytes()

public abstract ByteString getQuoteCharacterBytes()

Specifies the quoting character to be used when a data value is quoted.

string quote_character = 3;

Returns
Type Description
ByteString

The bytes for quoteCharacter.

getSelectQuery()

public abstract String getSelectQuery()

The select query used to extract the data.

string select_query = 1;

Returns
Type Description
String

The selectQuery.

getSelectQueryBytes()

public abstract ByteString getSelectQueryBytes()

The select query used to extract the data.

string select_query = 1;

Returns
Type Description
ByteString

The bytes for selectQuery.