OleDbError.ToString Méthode
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 le texte complet du message d'erreur.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Retours
Texte complet de l'erreur.
Exemples
L’exemple suivant affiche chacun OleDbError d’eux dans la OleDbErrorCollection collection.
public void DisplayOleDbErrors(OleDbException exception)
{
for (int i=0; i < exception.Errors.Count; i++)
{
MessageBox.Show("Index #" + i + "\n" +
"Error: " + exception.Errors[i].ToString() + "\n");
}
}
Public Sub DisplayOleDbErrors(exception As OleDbException)
Dim i As Integer
For i = 0 To exception.Errors.Count - 1
MessageBox.Show("Index #" + i.ToString() + ControlChars.Cr _
+ "Error: " + exception.Errors(i).ToString() + ControlChars.Cr)
Next i
End Sub
Remarques
La chaîne se présente sous la forme « OleDbError : », suivie de , Messageet de la trace de pile. Exemple :
OleDbError :UserId ou Password non valide. <trace de pile>