nodejs mssql - 传递的参数太多存储过程

时间:2016-06-17 08:41:11

标签: sql sql-server node.js stored-procedures node-mssql

我尝试使用 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帮助page),它表示,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和1000大小而来(在我的代码示例中为.input(..)行。)。我明天要测试一下。

1 个答案:

答案 0 :(得分:2)

如果在过程定义中为参数指定OUTPUT关键字,那么只有您获得使用以下行的权限;当您定义sql.Request()

.output('sqlOutput', sql.VarChar(1000), "Stored procedure has not run yet!!")

在存储过程中使用OUTPUT类型仅作为考虑您的案例的示例:

CREATE PROCEDURE dbo.getSysStatus_ByName    
    @ComputerName varchar(100),  
    @sqlOutput VarChar(1000) OUTPUT  
AS 
BEGIN 
    //YOUR SP CODE HERE 
END

如果您的存储过程没有OUTPUT参数,它只返回记录集,您可以通过函数回调获取相同的内容:

   .execute('dbo.getSysStatus_ByName').then(function(recordsets) {
    //recordsets is an result return by your executed stored procedure  })

SQL Server with NODE.JS - Get started

在您的情况下,您存储的procdeure不包含任何Output类型,因此您只需删除/注释掉以下行:

  

.output('sqlOutput',sql.VarChar(1000),“存储过程尚未运行   然而!!“)