vb.net を使用して ms access データベースから行を削除しようとしています。しかし、上記のエラーが発生しています。すべてのフィールドはデータベース内のテキストです。
これが私のコードです:
dim deleteRow() as DataRow
deleteRow = ds.Tables("ccc").Select("Question = '" & QuestionList(x).Text & "'")
deleteRow(0).Delete()
da.Update(ds,"ccc")