PRB: OpenEx() May Fail with "ODBC;" in Connection String

Last reviewed: June 26, 1997
Article ID: Q157126
The information in this article applies to:
  • The Microsoft Foundation Classes (MFC) included with: - Microsoft Visual C++, 32-bit Edition, versions 4.2, 5.0

SYMPTOMS

When you specify a connection string that begins with the characters ODBC;, CDatabase::OpenEx() does not behave as expected.

OpenEx() may fail to open an ODBC datasource using a connection string that worked with Open(). Some drivers may appear to ignore information in the connection string, such as the userid and password. You may also get an error message in the output window similar to the following:

   Invalid connection string attribute

CAUSE

CDatabase::OpenEx() does not accept a connection string beginning with ODBC;.

RESOLUTION

Remove the ODBC; prefix from the connection string for OpenEx().

MORE INFORMATION

CDatabase::Open() removes the ODBC; prefix from the connection string before passing it to OpenEx().

If an invalid connection string is passed to the driver, it will look in the registry for connection information.

REFERENCES

Visual C++ Books Online Help for CDatabase::OpenEx().

Visual C++ Books Online Help for SQLDriverConnect().


Keywords : kbprg kbusage MfcDatabase
Technology : kbMfc
Version : 4.2 5.0
Platform : NT WINDOWS
Issue type : kbprb


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 26, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.