将数据库中的值添加到组合框中

时间:2018-03-03 15:35:27

标签: c# sql database ssms

所以我已经从表单连接了我的数据库,我想知道如何将Strand_NameStatus_Name的数据添加到它们所属的相应组合框中。我一直在搞乱Add.Items这个问题,我不知道我将使用哪个代码以及我应该放置代码private void。有什么建议吗?

screencap of my form

1 个答案:

答案 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);

           }
           }
          }

       }