c# check返回数据表

本文关键字:数据表 返回 check | 更新日期: 2023-09-27 18:12:25

我需要检查返回数据表计数行在我的asp . net GridView代码。

我尝试了这个解决方案,我没有错误,但代码不显示警报,不计算行。

我的代码如下。

我将非常感谢你在解决这个问题上给我的任何帮助。

public DataTable GridViewBind()
{
    sql = " SELECT * FROM tbl; ";
    try
    {
        dadapter = new OdbcDataAdapter(sql, conn);
        dset = new DataSet();
        dset.Clear();
        dadapter.Fill(dset);
        DataTable dt = dset.Tables[0];
        GridView1.DataSource = dt;
        GridView1.DataBind();
        return dt;
        if (dt.Rows.Count == 0)
        {
            Page.ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('No data.');window.location='default.aspx';", true);
        }
    }
    catch (Exception ex)
    {
        throw ex;
    }
    finally
    {
        dadapter.Dispose();
        dadapter = null;
        conn.Close();
    }
}

c# check返回数据表

当然,代码没有显示警告。在此之前从方法返回:

return dt;
// nothing after this will execute
if (dt.Rows.Count == 0)
{
    Page.ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('No data.');window.location='default.aspx';", true);
}

编译器应该就此警告你。不要忽略编译器的警告。

您可以简单地将return语句移动到代码块的末尾:

if (dt.Rows.Count == 0)
{
    Page.ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('No data.');window.location='default.aspx';", true);
}
return dt;

旁注:您的catch块是:

  1. 丢弃有意义的堆栈跟踪信息
  2. 完全多余的

只需完全去除catch块,保留tryfinally块。如果确实需要从catch块重新抛出异常,只需使用以下命令:

throw;

这保留了原来的异常,而不是用一个新的类似的异常替换它。