DataRow.GetColumnError Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá popis chyby pro sloupec.
Přetížení
GetColumnError(String) |
Získá popis chyby pro sloupec určený názvem. |
GetColumnError(DataColumn) |
Získá popis chyby zadaného DataColumn. |
GetColumnError(Int32) |
Získá popis chyby pro sloupec určený indexem. |
GetColumnError(String)
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
Získá popis chyby pro sloupec určený názvem.
public:
System::String ^ GetColumnError(System::String ^ columnName);
public string GetColumnError (string columnName);
member this.GetColumnError : string -> string
Public Function GetColumnError (columnName As String) As String
Parametry
- columnName
- String
Název sloupce
Návraty
Text popisu chyby.
Příklady
Následující příklad nastaví popis chyby pro zadaný DataRow.
private void SetColError(DataRow row, int columnIndex)
{
string errorString = "Replace this text.";
// Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString);
}
private void PrintColError(DataRow row, int columnIndex)
{
// Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
byVal columnIndex As Integer)
Dim errorString As String = "Replace this text."
' Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString)
End Sub
Private Sub PrintColError( _
ByVal row As DataRow, byVal columnIndex As Integer)
' Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex))
End Sub
Poznámky
K nastavení chyb sloupců použijte metodu SetColumnError .
Pokud chcete zjistit, jestli pro kolekci sloupců existují nějaké chyby, použijte metodu HasErrors . V důsledku toho můžete použít metodu GetColumnsInError k načtení všech sloupců s chybami.
Pokud chcete vymazat všechny chyby pro kolekci sloupců, použijte metodu ClearErrors .
Viz také
- ClearErrors()
- DataColumnCollection
- Contains(String)
- DataColumn
- GetColumnsInError()
- HasErrors
- RowError
- SetColumnError(Int32, String)
Platí pro
GetColumnError(DataColumn)
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
Získá popis chyby zadaného DataColumn.
public:
System::String ^ GetColumnError(System::Data::DataColumn ^ column);
public string GetColumnError (System.Data.DataColumn column);
member this.GetColumnError : System.Data.DataColumn -> string
Public Function GetColumnError (column As DataColumn) As String
Parametry
- column
- DataColumn
Úloha DataColumn.
Návraty
Text popisu chyby.
Příklady
Následující příklad nastaví popis chyby pro zadaný DataRow.
private void SetColError(DataRow row, int columnIndex)
{
string errorString = "Replace this text.";
// Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString);
}
private void PrintColError(DataRow row, int columnIndex)
{
// Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
byVal columnIndex As Integer)
Dim errorString As String = "Replace this text."
' Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString)
End Sub
Private Sub PrintColError( _
ByVal row As DataRow, byVal columnIndex As Integer)
' Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex))
End Sub
Poznámky
K nastavení chyb sloupců použijte metodu SetColumnError .
Pokud chcete zjistit, jestli pro kolekci sloupců existují nějaké chyby, použijte metodu HasErrors . V důsledku toho můžete použít metodu GetColumnsInError k načtení všech sloupců s chybami. GetErrors Případně metoda DataTable vrátí všechny řádky s chybami.
Pokud chcete vymazat všechny chyby pro kolekci sloupců, použijte metodu ClearErrors .
Viz také
- ClearErrors()
- DataColumnCollection
- Contains(String)
- DataColumn
- GetColumnsInError()
- GetErrors()
- HasErrors
- RowError
- SetColumnError(Int32, String)
Platí pro
GetColumnError(Int32)
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
- Zdroj:
- DataRow.cs
Získá popis chyby pro sloupec určený indexem.
public:
System::String ^ GetColumnError(int columnIndex);
public string GetColumnError (int columnIndex);
member this.GetColumnError : int -> string
Public Function GetColumnError (columnIndex As Integer) As String
Parametry
- columnIndex
- Int32
Index sloupce počítaný od nuly
Návraty
Text popisu chyby.
Výjimky
Argument columnIndex
je mimo rozsah.
Příklady
Následující příklad nastaví popis chyby pro zadaný DataRow.
private void SetColError(DataRow row, int columnIndex)
{
string errorString = "Replace this text.";
// Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString);
}
private void PrintColError(DataRow row, int columnIndex)
{
// Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex));
}
Private Sub SetColError(ByVal row As DataRow, _
byVal columnIndex As Integer)
Dim errorString As String = "Replace this text."
' Set the error for the specified column of the row.
row.SetColumnError(columnIndex, errorString)
End Sub
Private Sub PrintColError( _
ByVal row As DataRow, byVal columnIndex As Integer)
' Print the error of a specified column.
Console.WriteLine(row.GetColumnError(columnIndex))
End Sub
Poznámky
K nastavení chyb sloupců použijte metodu SetColumnError .
Pokud chcete zjistit, jestli pro kolekci sloupců existují nějaké chyby, použijte metodu HasErrors . V důsledku toho můžete použít metodu GetColumnsInError k načtení všech sloupců s chybami.
Pokud chcete vymazat všechny chyby pro kolekci sloupců, použijte metodu ClearErrors .
Viz také
- ClearErrors()
- DataColumnCollection
- Contains(String)
- DataColumn
- GetColumnsInError()
- HasErrors
- RowError
- SetColumnError(Int32, String)