DataTable.GetErrors 메서드
오류가 있는 DataRow 개체로 이루어진 배열을 가져옵니다.
네임스페이스: System.Data
어셈블리: System.Data(system.data.dll)
구문
‘선언
Public Function GetErrors As DataRow()
‘사용 방법
Dim instance As DataTable
Dim returnValue As DataRow()
returnValue = instance.GetErrors
public DataRow[] GetErrors ()
public:
array<DataRow^>^ GetErrors ()
public DataRow[] GetErrors ()
public function GetErrors () : DataRow[]
반환 값
오류가 있는 DataRow 개체로 이루어진 배열을 반환합니다.
설명
DataSet 클래스의 GetChanges 메서드를 호출한 다음 GetErrors를 호출합니다. 모든 오류를 해결하고 업데이트를 위해 DataSet을 다시 제출하기 전까지는 DataTable에서 AcceptChanges를 호출하지 마십시오.
예제
다음 예제에서는 GetErrors 메서드를 사용하여 오류가 있는 DataRow 개체로 이루어진 배열을 반환합니다.
Private Sub PrintAllErrs(ByVal dataSet As DataSet)
Dim rowsInError() As DataRow
Dim table As DataTable
Dim i As Integer
Dim column As DataColumn
For Each table In dataSet.Tables
' Test if the table has errors. If not, skip it.
If table.HasErrors Then
' Get an array of all rows with errors.
rowsInError = table.GetErrors()
' Print the error of each column in each row.
For i = 0 To rowsInError.GetUpperBound(0)
For Each column In table.Columns
Console.WriteLine(column.ColumnName, _
rowsInError(i).GetColumnError(column))
Next
' Clear the row errors
rowsInError(i).ClearErrors
Next i
End If
Next
End Sub
private void PrintAllErrs(DataSet dataSet)
{
DataRow[] rowsInError;
foreach(DataTable table in dataSet.Tables)
{
// Test if the table has errors. If not, skip it.
if(table.HasErrors)
{
// Get an array of all rows with errors.
rowsInError = table.GetErrors();
// Print the error of each column in each row.
for(int i = 0; i < rowsInError.Length; i++)
{
foreach(DataColumn column in table.Columns)
{
Console.WriteLine(column.ColumnName + " " +
rowsInError[i].GetColumnError(column));
}
// Clear the row errors
rowsInError[i].ClearErrors();
}
}
}
}
플랫폼
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에서 지원
참고 항목
참조
DataTable 클래스
DataTable 멤버
System.Data 네임스페이스
HasErrors
DataRow.RowError 속성
SetColumnError