postgres icon indicating copy to clipboard operation
postgres copied to clipboard

PostgreSQL driver for Deno

Results 53 postgres issues
Sort by recently updated
recently updated
newest added

Currently, this error gets lost when TLS enforcement is true.

I initially thought `@bartlomieju/postgres` was a fork – especially since it's so far behind (#480) – because I know this package as a `denodriver/...` package. Is there not a `@deno/`...

**Describe the bug** I am using NeonPostgres and connecting to the database in Deno using the following below and executing this way. This connection is running in a Discord bot...

**Is your feature request related to a problem? Please describe.** It's only related to the fact that, as it is, the JSR package is [hardcoded to an old `std` version](https://github.com/denodrivers/postgres/blob/main/tools/convert_to_jsr.ts#L19)....

**Describe the bug** The JSR package hasn't been updated in a while. This repo is at 0.19.x and the only JSR version is at 0.17.2 Looking at the [Action history](https://github.com/denodrivers/postgres/actions/workflows/publish_jsr.yml),...

This pr renames the jsr package so that it uses the @db scope (used by the mongo and sqlite drivers), moves the dependency on the standard library over to the...

Let me explain by code: ``` const testA = async (bigArray) => { using client = await pool.connect() const trx = client.createTransaction('testa') await trx.begin() for (let i = 0; i...

Sources all deps from JSR Several code quality improvements

Updates usages of of `Deno.errors.PermissionDenied` to also support Deno v2's new `Deno.errors.NotCapable`. Fixes #491

The new version of Deno introduces some changes to the permission system, [see](https://deno.com/blog/v2.0-release-candidate#permission-system-changes). Notably the introduction of `Deno.errors.NotCapable` breaks `createParams` [here](https://deno.land/x/[email protected]/connection/connection_params.ts?source=#L423). ```ts try { pgEnv = getPgEnv(); } catch (e)...