Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataRow::SetColumnError Method (DataColumn^, String^)

 

Sets the error description for a column specified as a DataColumn.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
void SetColumnError(
	DataColumn^ column,
	String^ error
)

Parameters

column
Type: System.Data::DataColumn^

The DataColumn to set the error description for.

error
Type: System::String^

The error description.

To examine error descriptions, use the GetColumnError method.

To determine whether any errors exist for the columns collection, use the HasErrors property. Consequently, you can use the GetColumnsInError method to retrieve all the columns with errors.

If null or an empty string is passed in as the error parameter, the DataRow behaves as if no error was set and the HasErrors property will return false.

To set a custom error description on the whole row, use the RowError property.

To determine whether any errors exist for the columns collection, use the HasErrors method.

To clear all errors for the columns collection, use the ClearErrors method.

The following example sets an error description for a specified DataRow.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft