Skip to main content
Module

x/postgres/query/query.ts>QueryResult

PostgreSQL driver for Deno
Extremely Popular
Go to Latest
class QueryResult
import { QueryResult } from "https://deno.land/x/postgres@v0.17.0/query/query.ts";

Constructors

new
QueryResult(query: Query<ResultType>)

Properties

command: CommandType
optional
rowCount: number
rowDescription: RowDescription | undefined
warnings: Notice[]

Methods

handleCommandComplete(commandTag: string): void
insertRow(_row: Uint8Array[]): void

Add a row to the result based on metadata provided by rowDescription This implementation depends on row description not being modified after initialization

This function can throw on validation, so any errors must be handled in the message loop accordingly

This function is required to parse each column of the results