DuckDB-WASM
    Preparing search index...

    Interface DuckDBConfig

    interface DuckDBConfig {
        accessMode?: DuckDBAccessMode;
        allowUnsignedExtensions?: boolean;
        arrowLosslessConversion?: boolean;
        customUserAgent?: string;
        filesystem?: DuckDBFilesystemConfig;
        maximumThreads?: number;
        opfs?: DuckDBOPFSConfig;
        path?: string;
        query?: DuckDBQueryConfig;
        useDirectIO?: boolean;
    }
    Index

    Properties

    accessMode?: DuckDBAccessMode

    The access mode

    allowUnsignedExtensions?: boolean

    Whether to allow unsigned extensions

    arrowLosslessConversion?: boolean

    Whether to use alternate Arrow conversion that preserves full range and precision of data.

    customUserAgent?: string

    Custom user agent string

    The filesystem config

    maximumThreads?: number

    The maximum number of threads. Note that this will only work with cross-origin isolated sites since it requires SharedArrayBuffers.

    opfs string

    path?: string

    The database path

    The query config

    useDirectIO?: boolean

    The direct io flag