| |||||||||
DataTable.HasErrors PropertySystem.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
Property ValueThis property returns only a boolean value: true if errors exist, otherwise, false. The property is read only with no default value. RemarksAs 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. ExampleThe following example uses the HasErrors property to check if a table contains errors.
See Also |
| ||||||||
Check out related books at Amazon
© 2000-2008 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 aspxtreme