(executionError, results)
| 241 | const query = this; |
| 242 | // cannot use arrow function here because the function is bound to the statement |
| 243 | function afterExecute(executionError, results) { |
| 244 | try { |
| 245 | complete(); |
| 246 | // `this` is passed from sqlite, we have no control over this. |
| 247 | // eslint-disable-next-line no-invalid-this |
| 248 | resolve(query._handleQueryResponse(this, columnTypes, executionError, results, errForStack.stack)); |
| 249 | return; |
| 250 | } catch (error) { |
| 251 | reject(error); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | if (!parameters) parameters = []; |
| 256 |
nothing calls this directly
no test coverage detected