C#中的下拉列表combobox 与数据库绑定,列表中的值能否伴随着数据库中值的变化而自动变化,求解答
展开全部
当然可以了,因为你每次运行程序的时候,都是从数据库中读到数据,然后绑定数据的,数据库的值变了,combobox 的值自然变了
string con = "Server=localhost;database=Test;uid=sa;pwd=sa12345";
SqlConnection conn = new SqlConnection(con);
conn.Open();
string sql = "select stuName from StudentInfo where score<60";
SqlDataAdapter sda = new SqlDataAdapter(sql, conn);
DataTable dt = new DataTable();
sda.Fill(dt);
conn.Close();
comboBox1.DataSource = dt;//每次绑定数据的时候,都会执行一次上面的sql语句,所以数据会随时更新
comboBox1.DisplayMember="stuName ";
string con = "Server=localhost;database=Test;uid=sa;pwd=sa12345";
SqlConnection conn = new SqlConnection(con);
conn.Open();
string sql = "select stuName from StudentInfo where score<60";
SqlDataAdapter sda = new SqlDataAdapter(sql, conn);
DataTable dt = new DataTable();
sda.Fill(dt);
conn.Close();
comboBox1.DataSource = dt;//每次绑定数据的时候,都会执行一次上面的sql语句,所以数据会随时更新
comboBox1.DisplayMember="stuName ";
追问
谢谢大家,不过我已经打算放弃用这个组件了。哎,头疼。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询