RowNotInTableException Class
.NET Framework 3.0
Represents the exception that is thrown when you try to perform an operation on a DataRow that is not in a DataTable.
Namespace: System.Data
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
'Declaration <SerializableAttribute> _ Public Class RowNotInTableException Inherits DataException 'Usage Dim instance As RowNotInTableException
/** @attribute SerializableAttribute() */ public class RowNotInTableException extends DataException
SerializableAttribute public class RowNotInTableException extends DataException
Not applicable.
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.Object
System.Exception
System.SystemException
System.Data.DataException
System.Data.RowNotInTableException
System.Exception
System.SystemException
System.Data.DataException
System.Data.RowNotInTableException
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: