Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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.

§
quoteCharacter?: string
[src]

Optional. Specifies the quoting character to be used when a data value is quoted. The default is double-quote. The value of this argument has to be a character in Hex ASCII Code.

§
selectQuery?: string
[src]

Required. The SELECT query used to extract the data.