interface IStatement {     all(...args: any[]): any[];     finalize(): void;     run(...args: any[]): void;     toString(): string; }  Methods
all
- all(...args): any[]
- Returns any[]
finalize
- finalize(): void
- Returns void
run
- run(...args): void
- Returns void
toString
- toString(): string
- Returns string
Runs the SQL statement, returning an array of objects with the name of the columns and matching values.