OleDbErrorCollection.Item[Int32] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'erreur à l'index spécifié.
public:
property System::Data::OleDb::OleDbError ^ default[int] { System::Data::OleDb::OleDbError ^ get(int index); };
public System.Data.OleDb.OleDbError this[int index] { get; }
member this.Item(int) : System.Data.OleDb.OleDbError
Default Public ReadOnly Property Item(index As Integer) As OleDbError
Paramètres
- index
- Int32
Index de base zéro de l'erreur à récupérer.
Valeur de propriété
OleDbError qui contient l'erreur à l'index spécifié.
Remarques
L’exemple suivant affiche chacun OleDbError dans la OleDbErrorCollection collection.
public void DisplayOleDbErrorCollection(OleDbException myException)
{
for (int i=0; i < myException.Errors.Count; i++)
{
MessageBox.Show("Index #" + i + "\n" +
"Message: " + myException.Errors[i].Message + "\n" +
"Native: " + myException.Errors[i].NativeError.ToString() + "\n" +
"Source: " + myException.Errors[i].Source + "\n" +
"SQL: " + myException.Errors[i].SQLState + "\n");
}
}
S’applique à
Voir aussi
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.