我在尝试使用mssql在NodeJs中运行存储过程时遇到“传递的参数过多”到存储过程。
代码:
//This computerName is what we'll find in our mssql server to see
//if the server entry exist or not and the stored procedure will take this as a parameter.
var computerName = "some.fake.server.com";
var secProfile = "";
//Logic
// If computerName passed is valid and not null.
//if (computerName != "") {
var sql = require('mssql');
var config = {
user: 'dbuser',
password: 'secure9ass',
server: 'dbserver.domain.com',
database: 'DBName',
pool: {
max: 10,
min: 0,
idleTimeoutMillis: 30000
}
}
sql.connect(config).then(function(output) {
// Stored Procedure
new sql.Request()
.input("ComputerName", sql.VarChar(100), computerName)
.output('sqlOutput', sql.VarChar(1000), "Stored procedure has not run yet!!")
.execute('dbo.getSysStatus_ByName').then(function(recordsets) {
console.dir(recordsets);
}).catch(function(err) {
// ... error checks
console.log('ERROR1::: ' + err)
console.log("----")
console.log(err)
console.log("====")
console.log(recordsets)
console.log("----")
console.log('ERROR2::: '+ sqlOutput);
console.log('ERROR3::: '+ request.parameters.sqlOutput.value);
});
console.log(output);
}).catch(function(err) {
// ... error checks
console.log('ERROR5::: '+ err);
});
错误:传递给过程名称的参数过多:getSysStatus_ByName
我在数据库中检查了存储过程只有一个预期的参数,参数是:ComputerName
我知道我只缺少参数的名称,但我已经尝试过
.input("@ComputerName", sql.VarChar(100), computerName)
或者
.input("computerName", sql.VarChar(100), computerName)
或者
.input("computername", sql.VarChar(100), computerName)
没有任何效果,并给了我同样的错误。另外,尝试将参数类型从 sql.VarChar(xxx) 更改为 sql.Int (在这种情况下,它会出错,说无效类型,所以我知道 sql.VarChar(xxx) 很好。
成功运行的 .vb (visual basic) 脚本之一具有以下代码行并且可以正常工作。我想知道为什么我在 nodejs 中的代码给了我错误。
Set objCmd = CreateObject("ADODB.Command")
ObjCmd.ActiveConnection = Conn
ObjCmd.CommandTimeout = 180 'in seconds
ObjCmd.CommandType = 4 'Stored Procedure
ObjCmd.CommandText = "dbo.getSysStatus_ByName"
objCmd.Parameters.Append objCmd.CreateParameter("@ComputerName", 200, 1, 1024, ComputerName)
根据 CreateParameter(ADO 帮助页面),它说,200 是 # for
adVarChar 200 A string value (Parameter object only).
1 means: direction variable (where 1 is for an Input Parameter in my case) and
1024 is the size of the input variable.
我没有要尝试的 VPN 连接,但我希望错误不是由于 1024 vs 1000 大小(在我的 .input(..) 行的代码示例中)。我明天测试一下。