小编典典

没有数据时读取尝试无效

c#

    private void button1_Click(object sender, EventArgs e)
    {
        string name;
        name = textBox5.Text;
        SqlConnection con10 = new SqlConnection("con strn");
        SqlCommand cmd10 = new SqlCommand("select * from sumant where username=@name");
        cmd10.Parameters.AddWithValue("@name",name);
        cmd10.Connection = con10;
        cmd10.Connection.Open();//line 7
        SqlDataReader dr = cmd10.ExecuteReader();
    }

    if ( textBox2.Text == dr[2].ToString())
    {
        //do something;
    }

当我调试到第7行时,还可以,但是在那之后dr抛出异常: Invalid attempt to read when no data is present.
这是不可能的,因为我的表中确实有用户名= sumant的数据。请告诉我’if’陈述是否正确.........

以及如何清除错误?


阅读 427

收藏
2020-05-19

共1个答案

小编典典

您必须致电DataReader.Read以获取结果:

SqlDataReader dr = cmd10.ExecuteReader();
if (dr.Read()) 
{
    // read data for first record here
}

DataReader.Read()返回一个bool指示,指示是否还有更多的数据块要读取,因此,如果有多个结果,则可以执行以下操作:

while (dr.Read()) 
{
    // read data for each record here
}
2020-05-19