Interface DataExportOptions

Options for data export.

interface DataExportOptions {
    tables?: string[];
    includeSchema?: boolean;
    format?: ExportFormat;
    batchSize?: number;
    pretty?: boolean;
}

Properties

tables?: string[]

Tables to export (all if not specified)

includeSchema?: boolean

Include schema/DDL statements

format?: ExportFormat

Format for export

batchSize?: number

Batch size for large exports

pretty?: boolean

Whether to pretty-print JSON