asp.net.ph

DataTable.HasErrors Property

System.Data Namespace   DataTable Class


Checks whether there are errors in any of the rows in any of the tables of the DataSet to which the table belongs.

Syntax


Script [ bool variable = ] DataTable.HasErrors

Property Value

This property returns only a boolean value: true if errors exist, otherwise, false.

The property is read only with no default value.

Remarks

As users work on a set of data contained in a DataSet, you can mark each change with an error if the change causes some validation failure. You can mark an entire DataRow with an error message using the RowError property. You can also set errors on each column of the row with the SetColumnError method.

Before updating a DBMS with a DataSet, it’s recommended that you first invoke the GetChanges method on the target DataSet. The method results in a DataSet that contains only the changes made to the original. Before sending the DataSet to the DBMS for updating, check the HasErrors property of each table to see if any errors have been attached to the rows or columns in the rows.

After reconciling each error, clear the errors with the ClearErrors method.

Example

The following example uses the HasErrors property to check if a table contains errors.

Private void HasErrorsDemo ( DataSet myDataSet ) {
   // invoke GetChanges on the DataSet to create a reduced set.
   DataSet xDataSet = myDataSet.GetChanges ( );
   // check each table's HasErrors property.

   foreach ( DataTable xTable in xDataSet.Tables ) {
      // if HasErrors is true, reconcile errors.
      if ( xTable.HasErrors ) {
         // insert code to reconcile errors.
     }
   }
}
  C# VB

See Also

DataTable Members   GetErrors Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph