denodrivers / postgres

PostgreSQL driver for Deno
https://denodrivers.github.io/postgres
MIT License
608 stars 97 forks source link

Add decode strategy control #456

Closed bombillazo closed 9 months ago

bombillazo commented 9 months ago

FIxes #450

It gives developers control over the decoding strategy employed by the driver when returning row data. The default is auto (the current behavior) while adding string mode so all data is returned as a string and the user can take care of parsing the data in their application.

bombillazo commented 9 months ago

@bartlomieju any feedback?