MCPcopy Index your code
hub / github.com/sequelize/sequelize / afterExecute

Method afterExecute

src/dialects/sqlite/query.js:243–253  ·  view source on GitHub ↗
(executionError, results)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_handleQueryResponseMethod · 0.80

Tested by

no test coverage detected