RowNotInTableException Class
Assembly: System.Data (in System.Data.dll)
The RowNotInTableException is thrown when invoking the following methods on a row that has been deleted with either the Delete or the DataRowCollection.Remove method.
The following example creates a DataTable with one DataColumn and 10 DataRow objects. After deleting a row, the AcceptChanges method is called causing the RowNotInTableException to be thrown.
Private Sub DemonstrateRowNotInTableException() ' Create a DataTable with one column and ten rows. Dim table As New DataTable("NewTable") Dim column As New DataColumn("NewColumn") table.Columns.Add(column) Dim newRow As DataRow Dim i As Integer For i = 0 To 9 newRow = table.NewRow() newRow("NewColumn") = i table.Rows.Add(newRow) Next i Try ' Remove a row and invoke AcceptChanges. Dim removedRow As DataRow = table.Rows(9) removedRow.Delete() removedRow.AcceptChanges() Catch rowException As System.Data.RowNotInTableException Console.WriteLine("Row not in table") End Try End Sub
System.Exception
System.SystemException
System.Data.DataException
System.Data.RowNotInTableException
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.