We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
execute method now returns 3 arguments instead of 2.
execute
ps.execute(values, function(err, recordset, affected) { });
When streaming, done event now returns 2 arguments instead of 1.
done
request.on('done', function(returnValue, affected) { });
execute method now returns 4 arguments instead of 3.
ps.execute(values, function(err, recordset, returnValue, affected) { });
query method now returns 3 arguments instead of 2.
query
When streaming, done event now returns 1 argument.
request.on('done', function(affected) { });