Skip to main content
Module

x/kysely_deno_postgres_dialect/deps.ts>DatabaseConnection

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
interface DatabaseConnection
Re-export
import { type DatabaseConnection } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/deps.ts";

A single connection to the database engine.

These are created by an instance of Driver.

Methods

executeQuery<R>(compiledQuery: CompiledQuery): Promise<QueryResult<R>>
streamQuery<R>(compiledQuery: CompiledQuery, chunkSize?: number): AsyncIterableIterator<QueryResult<R>>