다음을 통해 공유


RowNotInTableException 클래스

DataTable에 없는 DataRow에서 작업을 수행하려고 할 때 throw되는 예외를 나타냅니다.

네임스페이스: System.Data
어셈블리: System.Data(system.data.dll)

구문

‘선언
<SerializableAttribute> _
Public Class RowNotInTableException
    Inherits DataException
‘사용 방법
Dim instance As RowNotInTableException
[SerializableAttribute] 
public class RowNotInTableException : DataException
[SerializableAttribute] 
public ref class RowNotInTableException : public DataException
/** @attribute SerializableAttribute() */ 
public class RowNotInTableException extends DataException
SerializableAttribute 
public class RowNotInTableException extends DataException

설명

RowNotInTableExceptionDelete 또는 DataRowCollection.Remove 메서드를 사용하여 삭제한 행에서 다음 메서드를 호출할 때 throw됩니다.

예제

다음 예제에서는 한 개의 DataColumn 개체와 열 개의 DataRow 개체가 있는 DataTable을 만듭니다. 그런 다음에는 행을 삭제하고 AcceptChanges 메서드를 호출하여 RowNotInTableException이 throw되도록 합니다.

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 
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.Object
   System.Exception
     System.SystemException
       System.Data.DataException
        System.Data.RowNotInTableException

스레드로부터의 안전성

이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.

플랫폼

Windows 98, Windows 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

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

RowNotInTableException 멤버
System.Data 네임스페이스