@photostructure/sqlite
    Preparing search index...

    Interface SqliteAuthorizationResults

    Authorization callback return values for setAuthorizer().

    These constants are compatible with node:sqlite.

    interface SqliteAuthorizationResults {
        SQLITE_DENY: number;
        SQLITE_IGNORE: number;
        SQLITE_OK: number;
    }
    Index

    Properties

    SQLITE_DENY: number

    Deny the operation and abort the SQL statement with an error.

    SQLITE_IGNORE: number

    Silently ignore/skip the operation (e.g., return NULL for column reads).

    SQLITE_OK: number

    Allow the operation.