티스토리 뷰
string query = "select * from customer_tab";
MySqlCommand cmd;
cmd = new MySqlCommand(query, conn);
MySqlDataAdapter da = new MySqlDataAdapter(cmd);
DataTable table = new DataTable("myTable");
da.Fill(table);
foreach (DataRow row in table.Rows)
{
for (int i = 0; i < row.ItemArray.Length; i++)
{
comboBox1.Items.Add(row.ItemArray[1].ToString());
}
}
MySqlConnection myConn = new MySqlConnection("datasource = '" + this.textBox_host_ip.Text + "';port=3306;username=root;password=password");
string selectstring = "select * from wdata_mdb.factory where layout_name = '"+this.cb_layout.Text+"';";
MySqlDataAdapter myadp = new MySqlDataAdapter(selectstring, myConn);
DataTable table = new DataTable("robot");
myadp.Fill(table);
foreach (DataRow row in table.Rows)
{
this.cb_robot_id.Items.Add(row.ItemArray[4].ToString());
}
'프로그래밍 > C#' 카테고리의 다른 글
c# mysql Data too long for column 'content' at row 1 (0) | 2019.01.23 |
---|---|
c# mysql Packets larger than max_allowed_packet are not allowed 오류해결 (0) | 2019.01.23 |
mysql 그리드뷰 오프하지 않고 나오게하기 (0) | 2019.01.23 |
Control에서 자동으로 TabPage 선택하는 방법 (0) | 2019.01.23 |
c# 콤보박스를 마우스 클릭하면 바로 mysql 에 있는 값 불러오기 (0) | 2019.01.23 |