DataRow.ClearErrors Metodo

Definizione

Cancella gli errori della riga. Ciò include la proprietà RowError e gli errori impostati con il metodo SetColumnError(Int32, String).

public:
 void ClearErrors();
public void ClearErrors ();
member this.ClearErrors : unit -> unit
Public Sub ClearErrors ()

Esempio

Nell'esempio seguente viene usato l'oggetto HasErrors per cercare gli errori. Se la riga ha errori, il GetColumnsInError metodo restituisce la matrice di colonne con errori che possono essere risolti. Il ClearErrors metodo viene quindi chiamato per cancellare tutti gli errori.

private void GetAllErrs(DataRow row)
{
    // Declare an array variable for DataColumn objects.
    DataColumn[] colArr;
    // If the Row has errors, check use GetColumnsInError.
    if(row.HasErrors)
    {
        // Get the array of columns in error.
        colArr = row.GetColumnsInError();
        for(int i = 0; i < colArr.Length; i++)
        {
            // Insert code to fix errors on each column.
            Console.WriteLine(colArr[i].ColumnName);
        }
        // Clear errors after reconciling.
        row.ClearErrors();
    }
}
Private Sub GetAllErrs(ByVal row As DataRow)
    ' Declare an array variable for DataColumn objects.
    Dim colArr() As DataColumn 

    ' If the Row has errors, check use GetColumnsInError.
    Dim i As Integer
    If row.HasErrors Then 
       ' Get the array of columns in error.
       colArr = row.GetColumnsInError()
       For i = 0 to colArr.GetUpperBound(0)
          ' Insert code to fix errors on each column.
          Console.WriteLine(colArr(i).ColumnName)
       Next i

    ' Clear errors after reconciling.
    row.ClearErrors()
    End If
 End Sub

Commenti

GetColumnError Usare SetColumnError e per impostare e restituire errori per singole colonne.

Impostare la RowError proprietà per impostare un errore che si applica all'intera riga.

Per determinare se esistono errori per la raccolta colonne, usare il HasErrors metodo . Di conseguenza, è possibile usare il GetColumnsInError metodo per recuperare tutte le colonne con errori.

Si applica a

Vedi anche