staab / janet-pqutils

A utility library for Janet and janet-pq.
MIT License
8 stars 0 forks source link

Add support for cursors #10

Closed staab closed 4 years ago

staab commented 4 years ago

The current "lazy" implementation only lazily grabs results from libpq's result object which lives in memory, not from the server, so it doesn't actually help anything. In order to do that, we need to use cursors.

https://www.postgresql.org/docs/9.2/plpgsql-cursors.html

staab commented 4 years ago

Closed with cce1936