PostgresClient
Defined in: src/adapters/postgres.ts:26
Minimal PostgreSQL client interface - satisfied by pg, postgres.js, and most
Postgres libraries. Only a single query method is required.
Methods
Section titled “Methods”query()
Section titled “query()”query(
text,params?):Promise<{rows:Record<string,unknown>[]; }>
Defined in: src/adapters/postgres.ts:27
Parameters
Section titled “Parameters”string
params?
Section titled “params?”unknown[]
Returns
Section titled “Returns”Promise<{ rows: Record<string, unknown>[]; }>