node-postgres
node-postgres copied to clipboard
PostgreSQL client for node.js.
Probably a chromium problem, pure node works. Tried with recent 0.77.0 Don't even know if that should be rather reported to nwjs or chromium... Just to let folks know. 
When I try to connect using `require('pg')`, auth fails with the error below. When I try to connect using `require('pg').native`, everything works great. I've reproduced this using both environment variables...
I am getting following error: https://sentry.io/share/issue/dc40781d83fd437184bca7ee5cde56be/ ``` RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range. It must be >= 0 and = 0 and
Using pg-connection-string with @types/pg currently results in a type error like this: Argument of type 'ConnectionOptions' is not assignable to parameter of type 'PoolConfig'. Types of property 'database' are incompatible....
When this pr is merged, we can update `@types/pg` to not depend on `@types/pg-types`
Hey there ! This is a proposal, in order to address #2653 it introduce another error type in addition to `DatabaseError` named `ParserError`, in charge of bubbling up any unexpected...
Fixes #2263
Related: https://github.com/brianc/node-postgres/issues/3405
First, thank you for maintaining the pg library. I'm having an issue dealing with large field values that I'd like to get community guidance on. ## Problem Description When working...
I have the following code snippet ``` const pool = new pg.Pool({ connectionString: env.DATABASE_URL, ssl: env.DATABASE_CA_CERT ? { ca: env.DATABASE_CA_CERT, rejectUnauthorized: true, } : undefined, }); ``` seems like a...