如何更新DataGridView
以便它也会影响数据库中的更改?
我正在尝试的代码是:
foreach (DataGridViewRow myDgrow in dataGridView2.Rows) {
myCmd = "Update Details set ProjectName='"
+ myDgrow.Cells["ProjectName"].Value
+ "', Description = '"
+ myDgrow.Cells["Description"].Value
+ "', DateStarted='"
+ myDgrow.Cells["DateStarted"].Value
+ "',TeamSize='"
+ myDgrow.Cells["TeamSize"].Value
+ "',Manager='"
+ myDgrow.Cells["Manager"].Value
+ "'";
myCmd = "Update Details set Description = '"
+ myDgrow.Cells["Description"].Value
+ "', DateStarted='"
+ myDgrow.Cells["DateStarted"].Value
+ "',TeamSize='"
+ myDgrow.Cells["TeamSize"].Value
+ "',Manager='"
+ myDgrow.Cells["Manager"].Value
+ "' where ProjectName='"
+ myDgrow.Cells["ProjectName"].Value
+ "'";
cmd.Parameters.AddWithValue("@projectName1", myDgrow.Cells["ProjectName"].Value);
cmd.Parameters.AddWithValue("@Description1", myDgrow.Cells["Description"].Value);
cmd.Parameters.AddWithValue("@DateStarted1", myDgrow.Cells["DateStarted"].Value);
cmd.Parameters.AddWithValue("@TeamSize1", myDgrow.Cells["TeamSize"].Value);
cmd.Parameters.AddWithValue("@Manager1", myDgrow.Cells["Manager"].Value);
cmd.CommandText = myCmd;
dataGridView2.Update();
//cmd.Parameters.Clear();
cmd.ExecuteNonQuery();
myCmd = string.Empty;
}
答案 0 :(得分:1)
在dataGridView2.Update();
之后致电cmd.ExecuteNonQuery();
,然后重试
答案 1 :(得分:1)
好的,这就是你想要做的事情:
using (SqlConnection c = new SqlConnection(connString))
using (SqlCommand cmd = new SqlCommand(sql, c))
{
cmd.Parameters.AddWithValue("@field1", myDgrow.Cells["field1"].Value);
...
cmd.ExecuteNonQuery();
}
其中sql
可能类似于:
UPDATE table SET field1 = @field1, field2 = @field2 WHERE fieldId = @fieldId
并且您将在foreach
循环内的每次迭代中执行此操作。
老实说,我不知道你在代码中做了什么,因为你将myCmd
背靠背地设置为两个不同的东西,然后你就没有使用它。所以我不知道cmd
对象有什么SQL。因此,只需修改代码即可使用我提出的结构,它将按预期工作。
注意:我不知道是否允许用户添加到数据网格,但如果是,则会构建不同的sql
,因为它需要是一个INSERT
声明。