フォーム アプリケーションから sqlite を更新しているときに C# を使用するデータグリッドで、 index out of range exception を取得しています。
テーブル 0 が見つかりません
以下は私のコードです
SQLiteConnection connection4 = new SQLiteConnection
(@"Data Source = C:\APTRABuilder.sqlite;Version =3");
connection4.Open();
string sql2 = "Update table set language1= '"
+ textBoxUpdate1.Text + "' where language2 = '"
+ textBox_Search.Text + "'";
SQLiteDataAdapter connect4 = new SQLiteDataAdapter(sql2, connection4);
DataSet ds4 = new DataSet();
connect4.Fill(ds4);
dataGridView.DataSource = ds4.Tables[0];
エラーが発生していますdataGridView.DataSource = ds4.Tables[0];