node-postgres icon indicating copy to clipboard operation
node-postgres copied to clipboard

PostgreSQL client for node.js.

Results 357 node-postgres issues
Sort by recently updated
recently updated
newest added

Work in progress to adress #2646 Base on the previous work of @jusou here https://github.com/brianc/node-postgres/pull/662, thx to him ! ### Principle In current behaviour of node-postgres, a query is not...

Hi, I'm wondering if there is a preferred package, extension, or method for providing more detail when you get a syntax error back from the parser (for instance, one that...

question

As I've been digging into proxying requests to postgres because of large serverless load, I've come to realize that transaction pooling with `node-postgres` does not seem possible for prepared statements....

When `pg` throws an error, I often have trouble finding the place in my code where this is actually coming from. For some reasons the exceptions thrown by `pg` seem...

Code is running in a lambda. When we run the function below it runs fine. But if we run it and then wait 10 minutes then run it again, we...

PostgreSQL v10 was released on Oct 05, 2017, see the [Release Notes](https://www.postgresql.org/docs/10/static/release-10.html). --- One of the most interesting features that affects `node-postgres` is [multiple host names or addresses in libpq...

feature request

I get a very generic error on an issue but I don't get information what column it is. How can I retrieve that information? error: numeric field overflow 1|job |...

for when you want to pass connection string AS IS to pg-native which allows the use of features present in libpq but still not implemented in the js drivers like...

First off love the module and use it often for large ETL processes for multiple clients, certainly the best Db connection module on npm (and I often have to connect...

if i have 225 connection limit on database and my server could spin 2-10 nodejs apps ``` const pool = new Pool(user: username, password: pass, host: host, database: db, max:...