我有問題要問。如何在datagridview中發生更改時更新數據庫
我想通過在datagridview中進行更改來更新數據庫後端的表。 DataGridView的更改應該反映到數據庫中。
我該如何實現它?
謝謝...
代碼:
SqlCommand command;
if (con.State == ConnectionState.Closed)
con.Open();
string updateQuery = @"UPDATE Hucre set [email protected] Where [email protected] and [email protected]";
command = new SqlCommand(updateQuery, con);
command.Parameters.Add("@VericiKB", SqlDbType.Int, 50, "VericiKB");
SqlParameter param1 = command.Parameters.Add("@HucreKB", SqlDbType.Int, 50, "HucreKB");
SqlParameter param2 = command.Parameters.Add("@OrtamKB", SqlDbType.Int, 50, "OrtamKB");
param1.SourceVersion = DataRowVersion.Original;
param2.SourceVersion = DataRowVersion.Original;
da.UpdateCommand = command;
您可以通過添加插入,更新ahcieve是,或DELETE命令/活動你到目前爲止嘗試過什麼..? – MethodMan 2012-01-17 15:44:05
@DJKRAZE嗨,嘗試但不能成功.. – 2012-01-17 15:45:03
你遇到什麼問題? – 2012-01-17 15:55:39