Skip to main content
Module

x/postgres/mod.ts

PostgreSQL driver for Deno
Extremely Popular
Latest
File
export { Client } from "./client.ts";export { ConnectionError, PostgresError, TransactionError,} from "./client/error.ts";export { Pool } from "./pool.ts";export { Oid, OidTypes } from "./query/oid.ts";
// TODO// Remove the following reexports after https://doc.deno.land// supports two level depth exportsexport type { OidType, OidValue } from "./query/oid.ts";export type { ClientOptions, ConnectionOptions, ConnectionString, Decoders, DecodeStrategy, TLSOptions,} from "./connection/connection_params.ts";export type { Session } from "./client.ts";export type { Notice } from "./connection/message.ts";export { PoolClient, QueryClient } from "./client.ts";export type { CommandType, QueryArguments, QueryArrayResult, QueryObjectOptions, QueryObjectResult, QueryOptions, QueryResult, ResultType, RowDescription,} from "./query/query.ts";export { Savepoint, Transaction } from "./query/transaction.ts";export type { IsolationLevel, TransactionOptions,} from "./query/transaction.ts";