Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the OLEDBErrors collection, which represents the error information returned by the most recent OLE DB query. Read-only.
expression.OLEDBErrors
expression A variable that represents an Application object.
This example displays the error description and SqlState property value for an OLE DB error returned by the most recent OLE DB query.
Set objEr = Application.OLEDBErrors.Item(1)
MsgBox "The following error occurred:" & _
objEr.ErrorString & " : " & objEr.SqlState
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.