OdbcErrorCollection Class
.NET Framework 2.0
Collects all errors generated by the OdbcDataAdapter. This class cannot be inherited.
Namespace: System.Data.Odbc
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
'Declaration <SerializableAttribute> _ Public NotInheritable Class OdbcErrorCollection Implements ICollection, IEnumerable 'Usage Dim instance As OdbcErrorCollection
/** @attribute SerializableAttribute() */ public final class OdbcErrorCollection implements ICollection, IEnumerable
SerializableAttribute public final class OdbcErrorCollection implements ICollection, IEnumerable
This class is created by OdbcException to collect instances of the OdbcError class. OdbcErrorCollection always contains at least one instance of the OdbcError class.
The following example displays each OdbcError within the OdbcErrorCollection.
Public Sub DisplayOdbcErrorCollection(exception As OdbcException) 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 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.
Community Additions
ADD
Show: