Interface QueryResult

interface QueryResult {
    lastInsertId?: number;
    rowsAffected: number;
}

Properties

lastInsertId?: number

The last inserted id.

This value is not set for Postgres databases. If the last inserted id is required on Postgres, the select function must be used, with a RETURNING clause (INSERT INTO todos (title) VALUES ($1) RETURNING id).

rowsAffected: number

The number of rows affected by the query.