所以我已经从表单连接了我的数据库,我想知道如何将Strand_Name
和Status_Name
的数据添加到它们所属的相应组合框中。我一直在搞乱Add.Items
这个问题,我不知道我将使用哪个代码以及我应该放置代码private void
。有什么建议吗?
答案 0 :(得分:1)
//Try My code.
// Call it On form load or IntializeComponent()
private void GetStrand()
{//depending on your database bind data like..
string query="select strand_id,strand_name from strand ";
using(MysqlConnection con =new MysqlConnection(//your connection string here)
{
con.open();
using(MysqlCommand cmd = new MysqlCommand(query,con)
{
MysqlDataReader reader =cmd.ExecuteReader();
while(reader.read())
{
string _strand= reader.GetString("strand_name");
cbostrand.Items.Add(_strand);
}
}
}
}