在这里,我尝试了此代码。但是,我现在的问题是,它不显示任何数据。
这是我的代码
try
{
DataTable dt = new DataTable();
con.Open();
dt.Load(new MySqlCommand("SELECT variant_name FROM tblVariant_Product WHERE product_name='" + cboProduct.Text + "'", con).ExecuteReader());
DataColumn col = dt.Columns.Add(new DataColumn("Quantity", typeof(Int32));
col.AllowDBNull = false;
DataRow row = dt.NewRow();
row["variant_name"] = "TOTAL";
row["quantity"] = 0;
dt.Rows.Add(row);
dataGridView2.DataSource = dt;
con.Close();
}
catch (Exception)
{
}