OLEDBErrors Property [Excel 2007 Developer Reference]

Switch View :
ScriptFree
Application.OLEDBErrors Property
Returns the OLEDBErrors collection, which represents the error information returned by the most recent OLE DB query. Read-only.

Syntax

expression.OLEDBErrors

expression   A variable that represents an Application object.

Example

This example displays the error description and SqlState property value for an OLE DB error returned by the most recent OLE DB query.

Visual Basic for Applications
Set objEr = Application.OLEDBErrors.Item(1)
MsgBox "The following error occurred:" & _
    objEr.ErrorString & " : " & objEr.SqlState