DataRow.GetColumnsInError 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取由包含错误的列组成的数组。
public:
cli::array <System::Data::DataColumn ^> ^ GetColumnsInError();
public System.Data.DataColumn[] GetColumnsInError ();
member this.GetColumnsInError : unit -> System.Data.DataColumn[]
Public Function GetColumnsInError () As DataColumn()
返回
包含错误的 DataColumn 对象组成的数组。
示例
以下示例使用 HasErrors 查找错误。 如果行有错误,该方法 GetColumnsInError 将返回列的数组,这些列具有随后可以解决的错误。 ClearErrors然后调用 方法以清除所有错误。
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
注解
GetColumnsInError通过仅返回具有错误的列,可以减少必须处理错误的对象数DataColumn。 可以使用 方法将错误设置为单个列 SetColumnError 。 若要进一步减少处理次数,请检查 HasErrors 类的 DataRow 属性,以确定 在调用 GetColumnsInError之前是否有DataRow错误。
ClearErrors使用 方法清除行上的所有错误。 其中包括 RowError。