da.SelectCommand=cmd;
都是这句出问题
名称“cmd”在类或命名空间“学生管理系统.Main”中不存在
我用了你的代码
但是
SqlConnection thisConnection=new SqlConnection(@"Data Source=(local);Integrated Security=SSPI;"+"Initial Catalog=student");
thisConnection.Open();
SqlCommand cmd2=new SqlCommand("select * from 档案 where 学号='"+this.textBox1.Text+"' and 姓名='"+this.textBox2.Text+"'",thisConnection);
SqlDataAdapter da=new SqlDataAdapter();
da.SelectCommand=cmd;
DataTable dt=new DataTable();
da.Fill(dt);
this.dataGrid1.DataSource=dt;
红色的错误提示
名称“cmd”在类或命名空间“学生管理系统.Main”中不存在
昨天就一直出这个问题