Merge pull request #22 from steegi/enable_ioc_in_hook

Enable Inversion of Control in connector hooks
This commit is contained in:
Raymond Feng 2015-06-23 14:35:08 -07:00
commit 60f0dc2a0c
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ SQLConnector.prototype.execute = function(sql, params, options, callback) {
options: options
};
this.notifyObserversAround('execute', context, function(context, done) {
self.executeSQL(sql, params, options, function(err, info) {
self.executeSQL(context.req.sql, context.req.params, context.options, function(err, info) {
if (!err && info != null) {
context.res = info;
}