OdbcError Class
Collects information relevant to a warning or error returned by the data source.
Assembly: System.Data (in System.Data.dll)
This class is created by the OdbcDataAdapter whenever an error occurs. Each instance of OdbcError created by the OdbcDataAdapter is then managed by the OdbcErrorCollection class, which in turn is created by the OdbcException class.
If the severity of the error is too great, the server may close the OdbcConnection. However, the user can reopen the connection and continue.
The following example displays the properties of the OdbcError class.
Public Sub DisplayOdbcErrorCollection(ByVal exception As OdbcException) 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 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.