OleDbErrorCollection Class
Collects all errors generated by the .NET Framework Data Provider for OLE DB. This class cannot be inherited.
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 Sub DisplayOleDbErrorCollection(exception As OleDbException) Dim i As Integer For i = 0 To exception.Errors.Count - 1 MessageBox.Show("Index #" + i.ToString() + ControlChars.Cr _ + "Message: " + exception.Errors(i).Message + ControlChars.Cr _ + "Native: " + exception.Errors(i).NativeError.ToString() + ControlChars.Cr _ + "Source: " + exception.Errors(i).Source + ControlChars.Cr _ + "SQL: " + exception.Errors(i).SQLState + ControlChars.Cr) Next i End Sub
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.