sqlite › Globals › "src/interfaces" › ISqlite › RunResult
▪ Stmt: Statement
- RunResult
• 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.
• 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: 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.