繁体   English   中英

使用存储过程(SQL数据库)时ASP.NET(C#)捕获异常

[英]ASP.NET(C#) catching exception while using stored procedure (sql database)

代码如下...我尝试使用调试点,它显示:

过程或函数“ usp_select_legal1_data”需要未提供的参数“ @tower”。

C#代码:

try {
    LegalView.ActiveViewIndex = 2;

    String tw2 = TextBox3.Text;
    SqlDataSource SqlDataSource2 = new SqlDataSource();
    SqlDataSource2.ID = "SqlDataSource2";
    this.Page.Controls.Add(SqlDataSource2);
    SqlDataSource2.ConnectionString = System.Configuration.ConfigurationManager
        .ConnectionStrings["constr"].ConnectionString;
    SqlDataSource2.SelectParameters.Add("@tower", tw2);
    SqlDataSource2.SelectCommand = "usp_select_legal1_data";

    GVCaseTowerWise.DataSource = SqlDataSource2;
    GVCaseTowerWise.DataBind();

    if (GVCaseTowerWise.Rows.Count == 0) {
        ScriptManager.RegisterClientScriptBlock(
            this,
            this.GetType(),
            "alertMessage",
            "alert('No cases for this tower exist in the database')",
            true);
    }
} catch (Exception ex) {
    ScriptManager.RegisterClientScriptBlock(this, this.GetType(),
            "alertMessage", "alert('error while getting data')", true);
}

这是我的存储过程:

ALTER PROCEDURE [dbo].[usp_select_legal1_data]
    @tower nvarchar(50)
AS
BEGIN
    SET NOCOUNT ON;

    SELECT distinct
      [tower_to]
      ,[tower_from]
      ,[sy_no]
    FROM [dbo].[legal1]
    WHERE ((tower_to = @tower) or (tower_from = @tower))
END

更改

SqlDataSource2.SelectParameters.Add("@tower", tw2);

SqlDataSource2.SelectParameters.Add("tower", tw2);

问题是放在@,因为参数名称是tower。 请参阅下面的MSDN文档https://msdn.microsoft.com/zh-cn/library/f58z9c1a(v=vs.110).aspx

我找到了问题的答案。 问题在于定义存储过程。 它仍然将程序视为文本命令。 这是我用的

SqlDataSource2.SelectCommandType = SqlDataSourceCommandType.StoredProcedure;

现在它正在工作。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM