4

DataReader当为空时,我的代码不会运行。下面是我的代码。

我的工作是关于日期安排。我的问题是关于假期限制。当用户输入日期(开始日期和结束日期)时,程序将检查输入的日期之间是否有假期。如果DataReader没有任何数据,则应保存输入的日期,或者如果DataReader有数据,则不保存输入的日期并且程序会给出错误消息。

try
{
    econ = new SqlConnection();
    econ.ConnectionString = emp_con;
    econ.Open();
    ecmd = new SqlCommand("SELECT CD_Date FROM CONS_DATES where CD_Date between '" + Convert.ToDateTime(dtpStart.Text) + "' and '" + Convert.ToDateTime(dtpEnd.Text) + "'", econ);
    ecmd.CommandType = CommandType.Text;
    ecmd.Connection = econ;
    dr = ecmd.ExecuteReader();
    while (dr.Read())
    {
        DateTime cdname = (DateTime)dr["CD_Date"];

        //This code is working
        if (Convert.ToDateTime(cdname) >= Convert.ToDateTime(dtpStart.Text) || Convert.ToDateTime(cdname) <= Convert.ToDateTime(dtpEnd.Text))
        {
            MessageBox.Show("Holiday Constraint. Creating Record Denied.");
        } //if

        //This code is not working. When the program fetch with no record, it should be continue to add the record but it's not working
        else
        if (dr == null || !dr.HasRows)
        {
            //In this area is my code for inserting the entered data.
            MessageBox.Show("Add na|!!!. Creating Record Denied.");
        }//if else
    }//while
}//try
catch (Exception x)
{
    MessageBox.Show(x.GetBaseException().ToString(), "Connection Status", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
4

5 回答 5

10

您的问题是,while循环仅在dr有一条或多条记录时运行。但是,如果dr是,null那么while循环将永远不会运行。

更好的解决方案是拥有一个System.Data.SqlClient.SqlDataReader.

并检查,

if (!dr.HasRows)
{
    // Your code to save the records, if no holidays found
}
else
{
    // Your code to show the error message, if there is one or more holidays
}
于 2012-10-22T03:40:38.067 回答
0

while(dr.Read())表示 dr 至少有 1 行。

所以 else 永远不会执行

你能在while之前做其他条件吗?

于 2012-10-22T03:18:10.557 回答
0

我尝试了我的想法,它回答了我的问题。我所做的是在 datagridview 中显示获取的数据,然后我创建了一个条件,如果 datagridview 有记录,那么我的记录将不会被保存,如果 datagridview 没有任何记录,那么记录将被保存。

谢谢大家!

于 2012-10-22T04:07:01.660 回答
0

试试这个:

while (sqlreader.Read())
{
    tbSubscriptionInfo.Text = sqlreader["nr_ore"].ToString();
}

if (!sqlreader.HasRows)
{
    tbSubscriptionInfo.Text = "";
}
于 2013-03-13T01:13:42.383 回答
0
if (dr == null || !dr.HasRows)
{
    // Your code to show the error message, if there is one or more holidays       
}
else
{
    // Your code to save the records, if no holidays found
}
于 2014-06-02T11:36:34.277 回答