Show / Hide Table of Contents

Class ExportContext.CsvExportOptionsData

Options for exporting data as CSV. MySQL and PostgreSQL instances only.

Inheritance
object
ExportContext.CsvExportOptionsData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class ExportContext.CsvExportOptionsData

Properties

EscapeCharacter

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

Declaration
[JsonProperty("escapeCharacter")]
public virtual string EscapeCharacter { get; set; }
Property Value
Type Description
string

FieldsTerminatedBy

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

Declaration
[JsonProperty("fieldsTerminatedBy")]
public virtual string FieldsTerminatedBy { get; set; }
Property Value
Type Description
string

LinesTerminatedBy

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.

Declaration
[JsonProperty("linesTerminatedBy")]
public virtual string LinesTerminatedBy { get; set; }
Property Value
Type Description
string

QuoteCharacter

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

Declaration
[JsonProperty("quoteCharacter")]
public virtual string QuoteCharacter { get; set; }
Property Value
Type Description
string

SelectQuery

The select query used to extract the data.

Declaration
[JsonProperty("selectQuery")]
public virtual string SelectQuery { get; set; }
Property Value
Type Description
string
In this article
Back to top Generated by DocFX