苏飞论坛

标题: C#访问SQL Server数据库时若查询到数据库没有的数据vs2005报错 [打印本页]

作者: 密浅    时间: 2013-10-15 22:27
标题: C#访问SQL Server数据库时若查询到数据库没有的数据vs2005报错
  private void chaxu()
        {
            string myConStr = "Data Source=.;Initial Catalog=wo;Integrated Security=True";
            SqlConnection myCon = new SqlConnection(myConStr);
            myCon.Open();
            SqlCommand myCom = new SqlCommand();
            myCom.CommandType = CommandType.Text;
            string comStr = "select 成员编号,地址编号,姓氏,名字,角色,发送贺卡 from 家庭成员";
            comStr = comStr + " where 成员编号='" + textBox1.Text.ToString() + "'";
            myCom.CommandText = comStr;
            myCom.Connection = myCon;
            SqlDataReader myRead = myCom.ExecuteReader();
            myRead.Read();
           
                this.textBox1.Text = myRead.GetInt32(0).ToString();
                this.textBox2.Text = myRead.GetInt32(1).ToString();
                this.textBox3.Text = myRead.GetString(2);
                this.textBox4.Text = myRead.GetString(3);
                this.textBox5.Text = myRead.GetString(4);
                this.textBox6.Text = myRead.GetBoolean(5).ToString();
            
            myRead.Close();
            myCon.Close();
        }
上面查询函数




真心求个人教 本人学生QQ 2362910894求解决方法
作者: 站长苏飞    时间: 2013-10-16 08:06
if (reader.Read())

你做个判断就行了,如果没有数据你还这样写
[code=csharp]this.textBox1.Text = myRead.GetInt32(0).ToString();
                this.textBox2.Text = myRead.GetInt32(1).ToString();
                this.textBox3.Text = myRead.GetString(2);
                this.textBox4.Text = myRead.GetString(3);
                this.textBox5.Text = myRead.GetString(4);
                this.textBox6.Text = myRead.GetBoolean(5).ToString();[/code]
那肯定会出错,因为没有数据时myRead.GetInt32(1)这样的数据是不存在的。
改成这样
[code=csharp]if (reader.Read())
{
this.textBox1.Text = myRead.GetInt32(0).ToString();
                this.textBox2.Text = myRead.GetInt32(1).ToString();
                this.textBox3.Text = myRead.GetString(2);
                this.textBox4.Text = myRead.GetString(3);
                this.textBox5.Text = myRead.GetString(4);
                this.textBox6.Text = myRead.GetBoolean(5).ToString();
}else
{
  return "没有数据,这里你自己处理"
}
[/code]

作者: 站长苏飞    时间: 2013-10-16 08:06
另外提示一下你的图片无法显示的




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4