papi-dts
    Preparing search index...

    Options for opening a SQLite database connection. These options are passed to the SQLite open method.

    See more information about these options in the SQLite documentation

    interface OpenDatabaseOptions {
        fullMutex?: boolean;
        readOnly?: boolean;
    }
    Index

    Properties

    fullMutex?: boolean

    Whether the database should only allow one database connection to access it at one time. Defaults to false.

    See more information about this option in the SQLite documentation

    10 March 2026 - All SQLite calls are now executed sequentially in a single worker thread, which provides mutual exclusion semantics regardless of this flag.

    readOnly?: boolean

    Whether the database connection should be read-only and prevent writing. Defaults to false for non-extension asset files. However, extension asset files are always read-only and cannot be edited.