我正在使用节点mssql(https://github.com/patriksimek/node-mssql)节点模块来连接我的SQL Server。
我需要一些类似的东西
declare @isTrue int
exec @isTrue = sp_isFolderExist @name='new folder',@FolderTypeID=1
select @isTrue
如何执行此存储过程并获取isTrue
变量的值?
var sql = require('mssql');
sql.connect("mssql://username:password@localhost/database", function(err) {
// ... error checks
new sql.Request()
.input('name', 'new folder')
.input('FilterTypeID', 1)
.execute('sp_isFolderExist', function(err, recordsets, returnValue) {
// ... error checks
console.log(returnValue); // your isTrue value
});
});