InvalidOperationException:没有数据时读取的尝试无效。 (SQL)

时间:2011-06-25 14:03:21

标签: asp.net sql invalidoperationexception

      SqlConnection conn = new SqlConnection(AllQuestionsPresented.connectionString);

    SqlCommand cmd = new SqlCommand(sb.ToString(), conn);
    cmd.Parameters.Add("@ThreadsID", SqlDbType.Int).Value = commentIDe;
    cmd.Parameters.Add("@CommentsID", SqlDbType.Int).Value = commentIDe;
    try
    {
        conn.Open();
        SqlDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);

        if (dr != null && dr["Comments"] != null && dr["Name"] != null && dr["Date"] != null && dr["UserID"]!=null)//> Invalid attempt to read when no data is present.
        {
            Comment = dr["Comments"].ToString();
            UserName = dr["Name"].ToString();
            Reputation=Int32.Parse(dr["Reputation"].ToString());
            Time = (DateTime)AllQuestionsPresented.TryParse(dr["Date"].ToString());
            UserID = (Guid)dr["UserID"];
        }
        dr.Close();
    }
    finally
    {
        if (conn.State != ConnectionState.Closed)
        {
            conn.Close();
        }
    }

注意:我用while(dr.Read){}迭代那段代码......这里没有显示。

为什么我会得到那个例外以及如何摆脱它

更新:

                 while (reader.Read())//Command runs through all the ThreadIDs that i have!
                {
                    Comments allQ = new Comments((int)reader["CommentsID"]);
                    allComments.Add(allQ);
                }

注释是代码所在的类,它在构造函数中有一个运行我提供的代码的方法。

如果循环运行的次数太多,那可能就是这样。那么异常正在抛出我对吗?

1 个答案:

答案 0 :(得分:4)

您的代码的以下部分是非法的

SqlDataReader dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);

if (dr != null && dr["Comments"] ...)

在访问SqlDataReader的索引器之前,您必须调用一次Read方法(并验证它是否返回true),如文档所述:

  

SqlDataReader的默认位置在第一条记录之前。因此,您必须调用Read以开始访问任何数据。