Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Per evitare di dover rispondere agli errori di riga durante la modifica dei valori in un DataTableoggetto , è possibile aggiungere le informazioni sull'errore alla riga per un uso successivo. L'oggetto DataRow fornisce una RowError proprietà per ogni riga a questo scopo. L'aggiunta di dati alla proprietà RowError di un DataRow imposta la HasErrors proprietà di DataRow su true. Se DataRow fa parte di un oggetto DataTable e DataRow.HasErrors è true, anche la proprietà DataTable.HasErrors è true. Questo vale anche per l'oggetto DataSet a cui appartiene DataTable . Durante il test degli errori, è possibile controllare la proprietà HasErrors per determinare se le informazioni sull'errore sono state aggiunte a qualsiasi riga. Se HasErrors è true, è possibile utilizzare il GetErrors metodo di DataTable per restituire ed esaminare solo le righe con errori, come illustrato nell'esempio seguente.
Dim workTable As DataTable = New DataTable("Customers")
workTable.Columns.Add("CustID", Type.GetType("System.Int32"))
workTable.Columns.Add("Total", Type.GetType("System.Double"))
AddHandler workTable.RowChanged, New DataRowChangeEventHandler(AddressOf OnRowChanged)
Dim i As Int32
For i = 0 To 10
workTable.Rows.Add(New Object() {i , i *100})
Next
If workTable.HasErrors Then
Console.WriteLine("Errors in Table " & workTable.TableName)
Dim myRow As DataRow
For Each myRow In workTable.GetErrors()
Console.WriteLine("CustID = " & myRow("CustID").ToString())
Console.WriteLine(" Error = " & myRow.RowError & vbCrLf)
Next
End If
Private Shared Sub OnRowChanged( _
sender As Object, args As DataRowChangeEventArgs)
' Check for zero values.
If CDbl(args.Row("Total")) = 0 Then args.Row.RowError = _
"Total cannot be 0."
End Sub
DataTable workTable = new DataTable("Customers");
workTable.Columns.Add("CustID", typeof(Int32));
workTable.Columns.Add("Total", typeof(Double));
workTable.RowChanged += new DataRowChangeEventHandler(OnRowChanged);
for (int i = 0; i < 10; i++)
workTable.Rows.Add(new Object[] {i, i*100});
if (workTable.HasErrors)
{
Console.WriteLine("Errors in Table " + workTable.TableName);
foreach (DataRow myRow in workTable.GetErrors())
{
Console.WriteLine("CustID = " + myRow["CustID"]);
Console.WriteLine(" Error = " + myRow.RowError + "\n");
}
}
protected static void OnRowChanged(
Object sender, DataRowChangeEventArgs args)
{
// Check for zero values.
if (args.Row["Total"].Equals(0D))
args.Row.RowError = "Total cannot be 0.";
}