Interface CSVInsertOptions

interface CSVInsertOptions {
    columns?: {
        [key: string]: arrow.DataType;
    };
    columnsFlat?: SQLField[];
    create?: boolean;
    dateFormat?: string;
    delimiter?: string;
    detect?: boolean;
    escape?: string;
    header?: boolean;
    name: string;
    quote?: string;
    schema?: string;
    skip?: number;
    timestampFormat?: string;
}

Properties

columns?: {
    [key: string]: arrow.DataType;
}

Type declaration

  • [key: string]: arrow.DataType
columnsFlat?: SQLField[]
create?: boolean
dateFormat?: string
delimiter?: string
detect?: boolean
escape?: string
header?: boolean
name: string
quote?: string
schema?: string
skip?: number
timestampFormat?: string

Generated using TypeDoc