如何:找尋有錯誤的資料列
當您使用個別的資料行和資料列時,資料錄有時可能會有錯誤。 您可以檢查 HasErrors 屬性,判斷錯誤存在於 DataSet、DataTable 或 DataRow。
尋找有錯誤的資料列
檢查 HasErrors 屬性,判斷資料集當中是否有任何錯誤。
如果 HasErrors 屬性為 true,則逐一查看資料表集合,接著逐一查看資料列,尋找有錯誤的資料列。
Private Sub FindErrors() Dim table As Data.DataTable Dim row As Data.DataRow If DataSet1.HasErrors Then For Each table In DataSet1.Tables If table.HasErrors Then For Each row In table.Rows If row.HasErrors Then ' Process error here. End If Next End If Next End If End Sub
private void FindErrors() { if (dataSet1.HasErrors) { foreach (DataTable table in dataSet1.Tables) { if (table.HasErrors) { foreach (DataRow row in table.Rows) { if (row.HasErrors) { // Process error here. } } } } } }