在使用 C# 的数据网格中,从表单应用程序更新 sqlite 时出现索引超出范围异常。
找不到表 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];