ソースはMySQLデータベースにあり、更新コマンドを作成したので、を更新する必要がありますDataGrid
。
MySqlCommand cmd = new MySqlCommand(
"update request set status = " + StatusRequest(value) +
" where id = " + rowView[0].ToString() + "", conn);
MySqlDataReader myReader = cmd.ExecuteReader();
どうすればリフレッシュできますDataGrid
か?