@qualithm/rqlite-client - v0.2.3
    Preparing search index...

    Type Alias ExecuteResult

    Result of an execute (INSERT/UPDATE/DELETE) operation.

    type ExecuteResult = {
        lastInsertId: number;
        rowsAffected: number;
        time: number;
    }
    Index

    Properties

    lastInsertId: number

    Last inserted row ID, if applicable.

    rowsAffected: number

    Number of rows affected by the operation.

    time: number

    Server-reported execution time in seconds.