Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/denodb/deps.ts>SQLiteClient#queryEntries

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Go to Latest
method SQLiteClient.prototype.queryEntries
import { SQLiteClient } from "https://deno.land/x/denodb@v1.1.0/deps.ts";

Like query except each row is returned as an object containing key-value pairs.

Type Parameters

optional
O extends RowObject = RowObject

Parameters

sql: string
optional
params: QueryParameterSet

Returns

Array<O>