求解!关于提取数据库字段问题
程序代码:
SqlConnection conn = new SqlConnection("Integrated Security=SSPI;Persist Security Info=False;User ID=sa;Initial Catalog=学生数据库1;Data Source=PC-201011181343"); SqlDataAdapter da = new SqlDataAdapter("select * from student_information", conn); ds = new DataSet(); da.Fill(ds, "student_information"); 第一种情况//textBox1.DataBindings.Add("text", ds, "login.用户权限"); 第二种情况//textBox1.DataBindings.Add("text",ds,"student_information.性别");为什么第一种情况不可以?提取不了!为什第二种情况就可以了?同样是从数据库表中提取!是不是设置的问题!本人第一次做系统!求解在login表中提取用户权限就不可以!在学生表中提取性别就行