ADBC JavaScript Driver Manager
    Preparing search index...

    Interface IngestOptions

    Options for the ingest convenience method.

    interface IngestOptions {
        mode?: IngestMode;
        catalog?: string;
        dbSchema?: string;
        temporary?: boolean;
    }
    Index

    Properties

    mode?: IngestMode

    How to handle an existing table. Defaults to IngestMode.Create.

    catalog?: string

    The catalog to create/locate the target table in (optional).

    dbSchema?: string

    The database schema to create/locate the target table in (optional).

    temporary?: boolean

    Whether to ingest into a temporary table (optional).