怎么样按名字查询了employee表后,id,name,sex,age在textbox1,textbox2,textbox3,textbox4上显示
然后修改.C#.net(vs2008),sql2005的。不要一部分代码,最好是全部的代码,谢谢...
然后修改.C#.net(vs2008) , sql2005的。
不要一部分代码,最好是全部的代码,谢谢 展开
不要一部分代码,最好是全部的代码,谢谢 展开
展开全部
string strConn ="Server=(local); integrated security =sspi;database=数据库名" ;
SqlConnection Conn = new SqlConnection(strConn);
string strCmd="select id,name,sex,age from employee where name='名字'";
SqlCommand Cmd = new SqlCommand(strCmd, Conn );
try
{
Conn.Open();
SqlDataReader myReader =Cmd.ExecuteReader();
if(myReader .Read())
{
textbox1.Text=myReader[0].ToString();
textbox2.Text=myReader[1].ToString();
textbox3.Text=myReader[2].ToString();
textbox4.Text=myReader[3].ToString();
}
myReader.Close();
}
catch (SqlException SqlLexc)
{
MessageBox.Show("错误:" + SqlLexc);
}
Conn.Close();
SqlConnection Conn = new SqlConnection(strConn);
string strCmd="select id,name,sex,age from employee where name='名字'";
SqlCommand Cmd = new SqlCommand(strCmd, Conn );
try
{
Conn.Open();
SqlDataReader myReader =Cmd.ExecuteReader();
if(myReader .Read())
{
textbox1.Text=myReader[0].ToString();
textbox2.Text=myReader[1].ToString();
textbox3.Text=myReader[2].ToString();
textbox4.Text=myReader[3].ToString();
}
myReader.Close();
}
catch (SqlException SqlLexc)
{
MessageBox.Show("错误:" + SqlLexc);
}
Conn.Close();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询