Skip to main content

StatementResultingChanges

interface StatementResultingChanges

Deno compatibility

This module is not implemented.

Properties Jump to heading

Jump to headingchanges: number | bigint

The number of rows modified, inserted, or deleted by the most recently completed INSERT, UPDATE, or DELETE statement. This field is either a number or a BigInt depending on the prepared statement's configuration. This property is the result of sqlite3_changes64().

The most recently inserted rowid. This field is either a number or a BigInt depending on the prepared statement's configuration. This property is the result of sqlite3_last_insert_rowid().

Back to top