我的代码有点问题。我连接了数据库,能够查看记录,添加记录甚至删除记录。
但是,我根本无法使用更新按钮。我一直收到“InvalidOperationException”错误。
Private Sub btnAmend_Click(sender As System.Object, e As System.EventArgs) Handles btnAmend.Click
Dim cb As New OleDb.OleDbCommandBuilder(da)
ds.Tables("Contacts").Rows(inc).Item(1) = txtFirstName.Text
ds.Tables("Contacts").Rows(inc).Item(2) = txtSurname.Text
da.Update(ds, "Contacts")
MsgBox("Data updated")
End Sub