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 void DemonstrateRowNotInTableException() { // Create a DataTable with one column and ten rows. DataTable table = new DataTable("NewTable"); DataColumn column = new DataColumn("NewColumn"); table.Columns.Add(column); DataRow newRow; for(int i = 0;i <10;i++) { newRow = table.NewRow(); newRow["NewColumn"] = i; table.Rows.Add(newRow); } try { // Remove a row and invoke AcceptChanges. DataRow removedRow = table.Rows[9]; removedRow.Delete(); removedRow.AcceptChanges(); } catch(System.Data.RowNotInTableException rowException) { Console.WriteLine("Row not in table"); } }
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.