From b5dbca15bd447bb1d684e3432b2dccc4db2de988 Mon Sep 17 00:00:00 2001 From: Kevin Delisle Date: Fri, 6 Jan 2017 17:00:49 -0500 Subject: [PATCH] sql: update attributes without count updateAttributes will now use an updateAllNoCount alias that does not return the count. --- lib/sql.js | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/lib/sql.js b/lib/sql.js index 1a02407..11ce0b2 100644 --- a/lib/sql.js +++ b/lib/sql.js @@ -589,7 +589,7 @@ Connector.defineAliases(SQLConnector.prototype, 'destroyAll', ['deleteAll']); SQLConnector.prototype.updateAttributes = function(model, id, data, options, cb) { if (!isIdValuePresent(id, cb)) return; var where = this._buildWhereObjById(model, id, data); - this.updateAll(model, where, data, options, cb); + this.updateAllNoCount(model, where, data, options, cb); }; /** @@ -679,6 +679,24 @@ SQLConnector.prototype.update = function(model, where, data, options, cb) { this._executeAlteringQuery(model, stmt.sql, stmt.params, options, cb || NOOP); }; +/** + * Update all instances that match the where clause with the given data, but + * without returning the count. + * @param {String} model The model name + * @param {Object} where The where object + * @param {Object} data The property/value object representing changes + * to be made + * @param {Object} options The options object + * @param {Function} cb The callback function + */ +SQLConnector.prototype.updateNoCount = function(model, where, data, + options, cb) { + var stmt = this.buildUpdate(model, where, data, options); + this.execute(stmt.sql, stmt.params, options, function(err) { + cb(err); + }); +}; + /** * Replace all instances that match the where clause with the given data * @param {String} model The model name @@ -705,6 +723,8 @@ SQLConnector.prototype._executeAlteringQuery = function(model, sql, params, opti Connector.defineAliases(SQLConnector.prototype, 'update', ['updateAll']); Connector.defineAliases(SQLConnector.prototype, 'replace', ['replaceAll']); +Connector.defineAliases(SQLConnector.prototype, 'updateNoCount', + ['updateAllNoCount']); /** * Build the SQL WHERE clause for the where object * @param {string} model Model name