You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like the iterate() method was added pretty recently in node v23.4.0. Having a cursor or iterator type of way to process results in a streaming fashion instead of loading everything to memory via StatementSync.all() would be nice.
The text was updated successfully, but these errors were encountered:
Deno's
node:sqlite
implementation appears to not haveStatementSync.iterate()
method to get query results.https://nodejs.org/api/sqlite.html#statementiteratenamedparameters-anonymousparameters
Looks like the
iterate()
method was added pretty recently in node v23.4.0. Having a cursor or iterator type of way to process results in a streaming fashion instead of loading everything to memory viaStatementSync.all()
would be nice.The text was updated successfully, but these errors were encountered: