Skip to content

Latest commit

 

History

History
59 lines (33 loc) · 1.52 KB

_src_interfaces_.isqlite.runresult.md

File metadata and controls

59 lines (33 loc) · 1.52 KB

sqliteGlobals"src/interfaces"ISqliteRunResult

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.