papi-dts
    Preparing search index...

    Information about the result of a query execution. This is the result of a query that modifies the database such as INSERT, UPDATE, DELETE, and some PRAGMA queries.

    interface RunResult {
        changes: number;
        lastId: number;
    }
    Index

    Properties

    Properties

    changes: number

    The number of rows that were changed or deleted by UPDATE or DELETE queries. This does not include inserted rows

    lastId: number

    The last row id that was inserted by the query. This is only available for INSERT queries.