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 79c3170 commit 96941c3Copy full SHA for 96941c3
promise.js
@@ -261,9 +261,9 @@ class Statement {
261
*
262
* @param bindParameters - The bind parameters for executing the statement.
263
*/
264
- iterate(...bindParameters) {
+ async iterate(...bindParameters) {
265
try {
266
- const it = this.stmt.iterate(...bindParameters);
+ const it = await this.stmt.iterate(...bindParameters);
267
it[Symbol.iterator] = function() { return this; };
268
return it;
269
} catch (err) {
0 commit comments