OleDbError Class
Assembly: System.Data (in system.data.dll)
This class is created by the OleDb data adapter when an error occurs. An instance of OleDbError is created and managed by the OleDbErrorCollection class, which in turn is created by the OleDbException class.
If the severity of the error is too great, the server may close the OleDbConnection. However, the user can reopen the connection and continue.
The following example displays the properties of the OleDbError.
Public Sub DisplayOleDbErrorCollection(ByVal exception As OleDbException) Dim i As Integer For i = 0 To exception.Errors.Count - 1 Console.WriteLine("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 Console.ReadLine() End Sub
Windows 98, Windows 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.