Skip to main content
Module

x/postgres/mod.ts>ConnectionOptions

PostgreSQL driver for Deno
Extremely Popular
Go to Latest
interface ConnectionOptions
import { type ConnectionOptions } from "https://deno.land/x/postgres@v0.17.0/mod.ts";

Properties

attempts: number

By default, any client will only attempt to stablish connection with your database once. Setting this parameter will cause the client to attempt reconnection as many times as requested before erroring

default: 1

interval: number | ((previous_interval: number) => number)

The time to wait before attempting each reconnection (in milliseconds)

You can provide a fixed number or a function to call each time the connection is attempted. By default, the interval will be a function with an exponential backoff increasing by 500 milliseconds