如何使用包含数据库中特定列的所有值的组合框。我有一个名为StudentName
的列,我希望有一个组合框,其中包含StudentName
的所有值。
sql = new SqlConnection(@"Data Source=PC-PC\PC;Initial Catalog=Anbar;Integrated Security=True");
adapter = new SqlDataAdapter("select * from School", sql);
我该怎么办?请提供一些代码以继续这些代码,我们将不胜感激。
答案 0 :(得分:5)
sqlCon = new SqlConnection(@"Data Source=PC-PC\PC;Initial Catalog=Anbar;Integrated Security=True");
SqlDataAdapter da = new SqlDataAdapter("Select StudentName from School", sqlCon);
DataTable dt = new DataTable();
da.Fill(dt);
yourComboBox.DataSource = dt;
yourComboBox.DisplayMember = "StudentName";
yourComboBox.ValueMember = "StudentName";
答案 1 :(得分:1)
使用以下代码
SqlDataAdapter da = new SqlDataAdapter("Select StudentName from School", sqlCon);
DataTable dat = new DataTable();
da.Fill(dat);
cmb.DataSource = dat;
cmb.DisplayMember = "StudentName";
cmb.ValueMember = "StudentName";