CsvExportOptions
import type { CsvExportOptions } from "https://googleapis.deno.dev/v1/alloydb:v1.ts";
Options for exporting data in CSV format.
interface CsvExportOptions {
escapeCharacter?: string;
fieldDelimiter?: string;
quoteCharacter?: string;
selectQuery?: string;
}§Properties
§
escapeCharacter?: string
[src]Optional. Specifies the character that should appear before a data character that needs to be escaped. The default is the same as quote character. The value of this argument has to be a character in Hex ASCII Code.
§
fieldDelimiter?: string
[src]Optional. Specifies the character that separates columns within each row (line) of the file. The default is comma. The value of this argument has to be a character in Hex ASCII Code.