postgres-bridge
postgres-bridge copied to clipboard
postgres/pg compatibility layer
The following query inserts a JSON object to a table with a JSONB column. ``` UPDATE public.property_history SET attributes = ${sql.jsonb(attributes ?? null)}, status = ${status} WHERE id = ${id}...
## :rotating_light: The automated release from the `main` branch failed. :rotating_light: I recommend you give this issue a high priority, so other packages depending on you can benefit from your...
```ts declare module 'postgres-bridge' { import { PoolConfig, Pool } from 'pg'; // Importing specific types from pg import postgres from 'postgres'; // Importing the default export from postgres module...