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
As much as I appreciate the current stream method... It Would be awesome to have a method that returns a readable stream so that each row can be iterated more easily.
async fn() {
for await (const row of sql`...`.toNodeStream()) {
// do something with row.
}
}