(sql, params, transformRows)
| 182 | return run(sql, params, "array") |
| 183 | }, |
| 184 | executeUnprepared(sql, params, transformRows) { |
| 185 | return this.execute(sql, params, transformRows) |
| 186 | }, |
| 187 | executeStream(sql, params, transformRows) { |
| 188 | function* stream() { |
| 189 | for (const stmt of sqlite3.statements(db, sql)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…