meteor-mssql
meteor-mssql copied to clipboard
Stored procedure return value
On line 94 of mssql.js you are calling cb without the returnValue passed back from the 'request.execute' call:
request.execute(opts.sp, function(err, recordsets, returnValue) {
return cb(err, recordsets)
});