Interface: RunResult ‹Stmt›
August 10, 2020 · View on GitHub
sqlite › Globals › "src/interfaces" › ISqlite › RunResult
Interface: RunResult ‹Stmt›
Type parameters
▪ Stmt: Statement
Hierarchy
- RunResult
Index
Properties
Properties
Optional changes
• changes? : number
Defined in src/interfaces.ts:77
Number of rows changed.
Only contains valid information when the query was a successfully completed UPDATE or DELETE statement.
Optional lastID
• lastID? : number
Defined in src/interfaces.ts:70
Row id of the inserted row.
Only contains valid information when the query was a successfully completed INSERT statement.
stmt
• stmt: Statement‹Stmt›
Defined in src/interfaces.ts:63
Statement object.
It is not possible to run the statement again because it is automatically finalized after running for the first time. Any subsequent attempts to run the statement again will fail.