存储过程通过其提供的

时间:2017-04-05 07:34:58

标签: c# sql-server stored-procedures

我遇到了问题。我收到错误“过程或函数'SP_RPT_User'期望参数'@deptName',这是未提供的。”在c#应用程序中提供参数。甚至我复制并更换了名称。仍然没有成功。

 public DataTable SP_RPT_User(int loggedid, String deptName, String OfficeName, String empType)
    {
        int updatedrows = 0;

        DataTable table = new DataTable();
        try
        {
            cCommand = new System.Data.SqlClient.SqlCommand("SP_RPT_User", connection);
            cCommand.CommandType = CommandType.StoredProcedure;

            cCommand.Parameters.Add("@loggedId", SqlDbType.Int).Value = loggedid;
            cCommand.Parameters.Add("@deptName", SqlDbType.NVarChar, 200).Value = deptName;
            cCommand.Parameters.Add("@OfficeName", SqlDbType.VarChar, 150).Value = OfficeName;
            cCommand.Parameters.Add("@empType", SqlDbType.VarChar, 150).Value = empType;


            cCommand.CommandTimeout = 90000;
            connection.Open();
            updatedrows = cCommand.ExecuteNonQuery();

            using (var da = new SqlDataAdapter(cCommand))
            {
                cCommand.CommandType = CommandType.StoredProcedure;
                da.Fill(table);
            }

        }
        catch (Exception Ex)
        {
            connection.Close();
            // return -100;
        }
        finally
        {
            connection.Close();
        }

        return table;

    }

存储过程

ALTER PROCEDURE [dbo].[SP_RPT_User]
-- Add the parameters for the stored procedure here
@loggedId int,
@deptName NVarChar(200),
@OfficeName varchar(150),
@empType varchar(150)

AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;



declare @sql nvarchar(max);
set @sql ='SELECT ...'; // here is one query

    if(@deptName != '')
        set @sql = @sql + ' and dbo.TB_Department.name like ''%'+@deptName+'%''';

    Declare @params nvarchar(500)
    SELECT @params ='@loggedId int,'+
    '@deptName NVarChar(200),'+
    '@OfficeName varchar(150),'+
    '@empType varchar(150)'


     exec sp_executesql @sql, @params,@loggedId,@deptName,@OfficeName,@empType;


END

任何人都可以提供帮助。提前致谢。 我正在使用sql server 2014和vs2015。

1 个答案:

答案 0 :(得分:1)

我的猜测是,在执行查询时,C#中的deptName值为null。在这种情况下,您应该将DBNull.Value传递给null作为参数值:

var param = cCommand.Parameters.Add("@deptName", SqlDbType.NVarChar, 200);
param.Value = deptName ?? DBNull.Value;

从您的程序中我看到您与空字符串进行比较,因此请使用?? string.Empty来满足该条件。