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 cbea611 commit e6913a2Copy full SHA for e6913a2
1 file changed
immudb-node-showcase/src/overview-showcase.ts
@@ -160,8 +160,9 @@ async function overviewSchowcase() {
160
select * from testtable;
161
`})
162
console.log('sqlQueryInTxAt8')
163
- console.log(sqlQueryInTxAt8)
164
-
+ for await (const row of sqlQueryInTxAt8) {
+ console.log(row)
165
+ }
166
167
// sqlExecUpsert9
168
const sqlExecUpsertInTx9 = txApi.exec({
@@ -179,7 +180,9 @@ async function overviewSchowcase() {
179
180
181
182
console.log('sqlQueryInTxAt9')
- console.log(sqlQueryInTxAt9)
183
+ for await (const row of sqlQueryInTxAt9) {
184
185
186
187
188
throw 'I would like to cancel'
0 commit comments