node-postgres
node-postgres copied to clipboard
PostgreSQL client for node.js.
The docs somewhat talk about it in pieces, but it wasn't 100% clear what a minimal code example with full error handling looks like, so I was hoping to get...
I don't believe there is a way to do this currently, so I believe this would fall more into a feature request than a question, but let me know if...
Bumps [chai](https://github.com/chaijs/chai) from 4.3.6 to 5.1.1. Release notes Sourced from chai's releases. v5.1.1 What's Changed Set up ESLint for JSDoc comments by @koddsson in chaijs/chai#1605 build(deps-dev): bump ip from 1.1.8...
Bumps [lerna](https://github.com/lerna/lerna/tree/HEAD/packages/lerna) from 3.22.1 to 8.1.8. Release notes Sourced from lerna's releases. v8.1.8 8.1.8 (2024-08-05) Bug Fixes publish: upgrade @npmcli/arborist to 7.5.4 (#4058) (89de0eb) version: truncate release body based on...
Bumps [generic-pool](https://github.com/coopernurse/node-pool) from 2.5.4 to 3.9.0. Release notes Sourced from generic-pool's releases. v3.9.0 What's Changed fix: Add ready function type definition by @huajun07 in coopernurse/node-pool#295 fix: unref setTimeout in pool...
Currently `new Date(undefined)` (an invalid date) is serialized as `"0NaN-NaN-NaNTNaN:NaN:NaN.NaN+NaN:NaN"` which is not parsed by Postgres in any meaningful way. We can either fail early by throwing a JS error,...
I was trying out drizzle, using a PostgreSQL database (v15). I experience a huge performance issue just querying one row of a table with just one row. So I dig...
Hi there! Could you please publish release notes for 8.13.0? The diff looks pretty big: https://github.com/brianc/node-postgres/compare/pg%408.12.0...pg%408.13.0 Thanks a lot
PG supports sending ArrayBuffer _views_ (e.g. TypedArray instances like Uint8Array) over the wire as values in queries, but it cannot send the underlying ArrayBuffer as a value. Use case: I...