postgres
postgres copied to clipboard
PostgreSQL driver for Deno
**Is your feature request related to a problem? Please describe.** Data returned by the driver is serialized in a string by default. Semantically, some DB types (like `cidr`, `macaddress`, `text`)...
**Describe the bug** This change introduces an import error with respect to the crypto library when conntecting to secured instances with TLS: https://github.com/denodrivers/postgres/commit/51e34b26cb39ca287dbab87f8e018e757658a4f5 When attempting to instantiate a new instance...
When I add the project as a dependency, it'll require env var access for `PGAPPNAME`, `PGDATABASE`, `PGHOST`, `PGOPTIONS`, `PGPASSWORD`, `PGPORT`, `PGUSER` regardless I prefer to use this way of providing...
I think there is a problem with ending the pool. When I terminate the pool within a teardown function without explicitly terminating the client, I get a "Leaking resources" error....
Try to loop array in order to run delete query. Function as below. ``` wheres.forEach(async (where) => { const deleteSql = `DELETE FROM ${tableName} WHERE ${where}`; try { await destinationClient.queryObject(deleteSql);...
I have received the following error many times now (but cannot reproduce it reliably): ``` error: (in promise) TypeError: Cannot read properties of undefined (reading 'push') () => this.#available_connections!.push(client), ^...
badges/shields#8671
**Describe the bug** There is a bug in pool when connection cannot be established at pool start. This bug will bite when you wish close the connection **To Reproduce** Steps...
It's a topic that has been brought up every now and then in the Deno DB community, but as Deno is becoming more stable, supports NPM and Node, and we...
**Is your feature request related to a problem? Please describe.** I tried to pass a `Set` as a bind parameter, expecting it to behave like `Array`. It was hard to...