Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.53 KB

Excel.ODBCError.md

File metadata and controls

53 lines (38 loc) · 1.53 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ODBCError object (Excel)
vbaxl10.chm526072
vbaxl10.chm526072
Excel.ODBCError
a256d466-7fa1-4b0f-fe01-c2640743e7e9
03/30/2019
medium

ODBCError object (Excel)

Represents an ODBC error generated by the most recent ODBC query.

Remarks

The ODBCError object is a member of the ODBCErrors collection. If the specified ODBC query runs without error, the ODBCErrors collection is empty. The errors in the collection are indexed in the order in which they're generated by the ODBC data source.

Example

Use ODBCErrors (index), where index is the index number of the error, to return a single ODBCError object. The following example refreshes query table one and displays the first ODBC error that occurs.

With Worksheets(1).QueryTables(1) 
 .Refresh 
 If Application.ODBCErrors.Count > 0 Then 
 Set er = Application.ODBCErrors(1) 
 MsgBox "The following error occurred:" & 
 er.ErrorString & " : " & er.SqlState 
 Else 
 MsgBox "Query complete: all records returned." 
 End If 
End With

Properties

See also

[!includeSupport and feedback]