我有一个包含 10 个空行和列的数据网格,我通过文本框将数据输入到数据网格中,然后我将数据网格中的所有记录保存到数据库中?
如何保存数据网格中的所有记录。
任何人都可以帮助我。
SqlConnection con = new SqlConnection(/*YOUR Connection Path*/);
foreach (DataGridViewRow Row in dataGridView1.Rows)
{
con.Open();
SqlCommand cmd = new SqlCommand("Insert into Service_Sub(Service_No,Service_Date) Values('" + Row.Cells[0].Value.ToString() + "','" + Row.Cells[1].Value.ToString() + "')",con);
cmd.ExecuteNonQuery();
con.Close();
}