OdbcError Class
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 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.