Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OdbcError Class

 

Collects information relevant to a warning or error returned by the data source.

Namespace:   System.Data.Odbc
Assembly:  System.Data (in System.Data.dll)

System::Object
  System.Data.Odbc::OdbcError

[SerializableAttribute]
public ref class OdbcError sealed 

NameDescription
System_CAPS_pubpropertyMessage

Gets a short description of the error.

System_CAPS_pubpropertyNativeError

Gets the data source-specific error information.

System_CAPS_pubpropertySource

Gets the name of the driver that generated the error.

System_CAPS_pubpropertySQLState

Gets the five-character error code that follows the ANSI SQL standard for the database.

NameDescription
System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodToString()

Gets the complete text of the error message.(Overrides Object::ToString().)

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show:
© 2017 Microsoft