sql: update attributes without count

updateAttributes will now use an updateAllNoCount alias that does
not return the count.
This commit is contained in:
Kevin Delisle 2017-01-06 17:00:49 -05:00
parent e384aa53ee
commit b5dbca15bd
1 changed files with 21 additions and 1 deletions

View File

@ -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