DuckDB-WASM
    Preparing search index...

    Interface CSVInsertOptions

    interface CSVInsertOptions {
        columns?: { [key: string]: DataType<Type, any> };
        columnsFlat?: SQLField[];
        create?: boolean;
        dateFormat?: string;
        delimiter?: string;
        detect?: boolean;
        escape?: string;
        header?: boolean;
        name: string;
        quote?: string;
        schema?: string;
        skip?: number;
        timestampFormat?: string;
    }
    Index

    Properties

    columns?: { [key: string]: DataType<Type, any> }
    columnsFlat?: SQLField[]
    create?: boolean
    dateFormat?: string
    delimiter?: string
    detect?: boolean
    escape?: string
    header?: boolean
    name: string
    quote?: string
    schema?: string
    skip?: number
    timestampFormat?: string