ADBC JavaScript Driver Manager
    Preparing search index...

    Type Alias LoadFlags

    LoadFlags: typeof LoadFlags[keyof typeof LoadFlags]

    Bitmask flags controlling how the driver manager resolves a driver name.

    These values correspond to the ADBC_LOAD_FLAG_* constants in the ADBC spec. Flags can be combined with bitwise OR. When loadFlags is omitted in ConnectOptions, LoadFlags.Default is used.

    // Only search system paths, disallow relative paths
    const db = new AdbcDatabase({
    driver: 'sqlite',
    loadFlags: LoadFlags.SearchSystem,
    })