OleDbErrorCollection Class
.NET Framework 3.0
Collects all errors generated by the .NET Framework Data Provider for OLE DB. This class cannot be inherited.
Namespace: System.Data.OleDb
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
This class is created by OleDbException to collect instances of the OleDbError class. OleDbErrorCollection always contains at least one instance of the OleDbError class.
The following example displays each OleDbError within the OleDbErrorCollection collection.
public void DisplayOleDbErrorCollection(OleDbException exception) { for (int i=0; i < exception.Errors.Count; i++) { MessageBox.Show("Index #" + i + "\n" + "Message: " + exception.Errors[i].Message + "\n" + "Native: " + exception.Errors[i].NativeError.ToString() + "\n" + "Source: " + exception.Errors[i].Source + "\n" + "SQL: " + exception.Errors[i].SQLState + "\n"); } }
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: