@decafcode/sqlite
    Preparing search index...

    Interface RunResult

    Status information returned from a Statement.run call.

    interface RunResult {
        changes: number;
        lastInsertRowid: bigint;
    }
    Index

    Properties

    changes: number

    Number of rows affected

    lastInsertRowid: bigint

    The ROWID value of the last inserted row, if applicable.