SQL データベースからデータを読み取るために使用される C# の datagridview があります。基準が欠落している場合、ユーザーはデータグリッドを更新してSQLデータベースを更新できるように設定しました。ただし、ログ ファイルを生成し、データグリッドで変更された列またはフィールドをローカル マシンにエクスポートする必要があります。おそらくデータグリッドにイベントハンドラーを追加し、cellvaluechanged = true; の場合について考えてください。エクスポートを実行しますか? どんな助けでも大歓迎です、thx!
(提供するコードはありません。このタイプのメソッドにアプローチする方法がわかりません(まだC#には少しグリーンです))。
sqldataAdapter da;
sqlCommandBuilder scb;
DataTable dt;
SQLConnection con = (my connection);
private void btnEnter_Click(object sender, EventArgs e)
{
try
{
//Searches database for what is plugged into txtbox.
da = new SqlDataAdapter("SELECT * FROM [sqltable] WHERE [columnA]='" + txtData.Text + "' OR [ColumnB]='" + txtData.Text + "' OR [ColumnC]='" + txtData.Text + "' OR [ColumnD]='" + txtData.Text + "'", con);
ds = new DataSet();
dt = new DataTable();
ds.Clear();
da.Fill(dt);
dg.DataSource = dt;
con.Open();
con.Close();
private void btnUpdate_Click(object sender, EventArgs e)
{
//when button is clicked, the SQL Database gets updated with the data that is plugged into the datagridview.
scb = new SqlCommandBuilder(da);
da.Update(dt);