SQLDataReader不标识空列

时间:2015-10-07 09:39:55

标签: c# sqldatareader dbnull

所以,我有一个函数可以读取稍后在程序中使用的查询结果:

connection.Open();
int combination;
using (SqlCommand com1 = new SqlCommand())
{
    com1.Connection = connection; 
    com1.CommandText = "select FinalComboId from relationTable where sourceCombo=@source and destinationCombo=@destination";
    com1.Parameters.Add(new SqlParameter("@source",combo.ToString() ?? ""));
    com1.Parameters.Add(new SqlParameter("@destination", destination ?? ""));
    SqlDataReader comboLinkReader = com1.ExecuteReader();
    if (!comboLinkReader.Read() || comboLinkReader.FieldCount==0)
    {
        ScriptManager.RegisterClientScriptBlock(this, GetType(),
                   "alertMessage", @"alert('Combination does not exists,please contact admin!')", true);
    }
    else 
    {
        combination = Convert.ToInt32(comboLinkReader["FinalComboId"]);

    }
}

我想要实现的是:如果结果为空,则执行alert脚本,否则将结果保存为整数,用于进一步计算。我已经关注了几个关于这个问题的教程和示例,当我前几天执行该函数时,它运行得很好。现在,从启动它到生产2个小时,它不计算第一个条件:

if (!comboLinkReader.Read() || comboLinkReader.FieldCount==0)
       {//calculations  here}

我也试过

if (!comboLinkReader.Read() || comboLinkReader.IsDbNull(0))
   {//calculations}

我有同样的问题。查询应返回一个值。 有什么我做错了吗?

1 个答案:

答案 0 :(得分:3)

IsDbNull是一个需要列索引参数的方法。

int? finalComboId = null;
if(comboLinkReader.Read() && !comboLinkReader.IsDbNull(0))
    finalComboId = comboLinkReader.GetInt32(0);
if(!finalComboId.HasValue)
    ScriptManager.RegisterClientScriptBlock(this, GetType(), "alertMessage", @"alert('Combination does not exists,please contact admin!')", true);
else 
    combination = finalComboId.Value;