We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 355ddde commit bc8f6f2Copy full SHA for bc8f6f2
README.md
@@ -111,7 +111,7 @@ const users = await sql`
111
If you want to handle rows returned by a query one by one you can use `.stream` which returns a promise that resolves once there are no more rows.
112
```js
113
114
-await sql.stream`
+await sql`
115
select created_at, name from events
116
`.stream(row => {
117
// row = { created_at: '2019-11-22T14:22:00Z', name: 'connected' }
0 commit comments