Skip to main content
Module

x/postgres/mod.ts>Session

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

Properties

current_transaction: string | null

This is the code for the transaction currently locking the connection. If there is no transaction ongoing, the transaction code will be null

pid: number | undefined

This is the process id of the current session as assigned by the database on connection. This id will undefined when there is no connection stablished

tls: boolean | undefined

Indicates if the connection is being carried over TLS. It will be undefined when there is no connection stablished

transport: "tcp" | "socket" | undefined

This indicates the protocol used to connect to the database

The two supported transports are TCP and Unix sockets