DeletedRowInaccessibleException Class
Assembly: System.Data (in system.data.dll)
'Declaration <SerializableAttribute> _ Public Class DeletedRowInaccessibleException Inherits DataException 'Usage Dim instance As DeletedRowInaccessibleException
/** @attribute SerializableAttribute() */ public class DeletedRowInaccessibleException extends DataException
SerializableAttribute public class DeletedRowInaccessibleException extends DataException
Not applicable.
To delete a DataRow, use the Delete method of a DataRow class. As soon as you have deleted a row, any attempts to modify it will generate the DeletedRowInaccessibleException.
The DeletedRowInaccessibleException is thrown when you use one of the following properties or methods that try to get or set the value of a deleted DataRow:
Use the RowState of a DataRow class to determine whether a row has been deleted. If it has been deleted, you can use the Original method to retrieve it because deleted rows have no values available for the Current state.
System.Exception
System.SystemException
System.Data.DataException
System.Data.DeletedRowInaccessibleException
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.