4

为什么如果我使用输出参数创建此存储过程,我会收到以下错误:

sp_DTS_InsertLSRBatch 需要未提供的参数 @ErrorMsg

存储过程代码:

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go


ALTER PROCEDURE [dbo].[sp_DTS_InsertLSRBatch]  
    @LSRNbr varchar(10),
    @BatchNbr varchar(10),
    @ErrorMsg varchar(20) output
AS
BEGIN   
    SET NOCOUNT ON;    

    if not exists(select *
                from tblDTS_LSRBatch (nolock) 
                where LSRNbr=@LSRNbr and BatchNbr=@BatchNbr)
    begin   
        -- check if BatchNbr exists under another LSR
        -- if not add (LSR, BatchNbr) else error

        if not exists(select *
                from tblDTS_LSRBatch (nolock) 
                where BatchNbr=@BatchNbr)   

            insert into tblDTS_LSRBatch (LSRNbr,BatchNbr) values (@LSRNbr, @BatchNbr)       
        else    
            set @ErrorMsg = 'Batch dif LSR'     
    end
END

C#代码:

SqlConnection conn = new SqlConnection(ConnStr);

try
{
   conn.Open();                

   for (int i = 0; i <= lbxBatch.Items.Count - 1; i++)
   {
       SqlCommand cmd = new SqlCommand("sp_DTS_InsertLSRBatch", conn);
       cmd.Parameters.Add(new SqlParameter("@LSRNbr", txtLSR.Text));
       cmd.Parameters.Add(new SqlParameter("@BatchNbr", lbxBatch.Items[i].ToString()));
       //Output parameter "ErrorMsg"
       SqlParameter pErrorMsg = new SqlParameter("@ErrorMsg", SqlDbType.VarChar, 20);
       pErrorMsg.Direction = ParameterDirection.Output;

       cmd.CommandType = CommandType.StoredProcedure;
       cmd.ExecuteNonQuery();  <--- ERROR
4

3 回答 3

7

在您的代码中,您尚未添加 pErrorMsg 参数。添加这一行:

cmd.Parameters.Add(pErrorMsg);
于 2012-03-08T15:03:48.130 回答
1

此外,在您的存储过程中,您必须将 @ErrorMsg sql 输出变量设置为适当的值,例如 SP 代码的 if 条件部分中的空字符串或双双引号 (""),这是一种良好的编码习惯。

于 2012-03-08T15:16:48.397 回答
0

您正在创建 pErrorMsg 参数,但您在哪里将其添加到您的命令中?

于 2012-03-08T15:03:55.463 回答