Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed |
In most cases, this error message is purely informational, and does not indicate that anything terrible has happened while connecting to the database. To avoid the error, you can use
on error resume next, and then check each error in the conn.errors collection -- if any number is 0, it can be ignored.
See
KB #197459 and
KB #241267 for more information.