Skip to main content
Module

x/sqlite3/src/statement.ts>Statement#all

The fastest and correct SQLite3 module for Deno runtime
Latest
method Statement.prototype.all
import { Statement } from "https://deno.land/x/sqlite3@0.12.0/src/statement.ts";

Run the query and return the resulting rows where rows are objects mapping column name to their corresponding values.

Type Parameters

optional
T extends object = Record<string, any>