Мне нужна помощь с удалением записи из базы данных.Ошибка при удалении записи из базы данных
Я пытаюсь удалить запись из таблицы в моей базе данных SQL Server.
Я что-то упустил?
Private Sub cmdDelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdDelete.Click
_DataSet.Tables(0).Rows(CInt(txtCurrent.Text) - 1).Delete()
' tho, it can remove the deleted rows
' we cannot call the DataSet.AcceptChanges method
' because the DataAdapter would not recognize the delete row
' by the time DataAdapter.Update(DataSet) is called.
EnableNavigation()
cmdSave.Enabled = True ' let user update the underlying database
' after deleting the current record, the current record still points to the
' deleted record (though it cannot be updated).
' The user must MoveNext/Back to view other records.
End Sub
У меня была эта ошибка: ошибка при удалении записи в таблице ... Значение не может быть нулевым. Имя параметра: datatable – user2968155