FIX: Access Violation When Connecting in MFC ODBC ApplicationLast reviewed: December 18, 1997Article ID: Q167731 |
The information in this article applies to:
SYMPTOMSIf MFC42.DLL version 4.21.7002 is installed and ODBC 3.0 is not installed, MFC ODBC applications hit an access violation when they try to call SQLSetConnectOption() in DBCORE.CPP.
CAUSEMFC was changed in version 4.21.7002 (the version which is distributed with Visual C++ 5.0) to call SQLxxxA versions of the ODBC APIs. For example, the MFC DLL now calls 'SQLSetConnectOptionA' instead of 'SQLSetConnectOption'. These new function names are only exposed by the ODBC 3.0 Driver Manager. They are not available under the ODBC 2.x Driver Manager. To prevent implicitly loading ODBC32.DLL every time the MFC DLL is loaded, the MFC DLL loads the Driver Manager, and performs GetProcAddress calls to get the address of the various ODBC API functions. It then calls through these pointers into the ODBC32.DLL. In the case where the ODBC 3.0 Driver Manager is not installed, the call to GetProcAddress for any of the SQLxxxA functions fails and returns a null pointer. This causes the access violation to occur when the pointer is dereferenced. MFC does not properly handle checking for the null pointer.
RESOLUTIONIt is likely that Visual C++ 4.2x applications will see this problem because these applications don't ship with ODBC 3.0. To prevent an application from being exposed to this problem, ship the ODBC 3.0 components rather than the ODBC 2.x components, even if the application is a Visual C++ 4.2x application. Installing ODBC 3.0 on the system fixes the problem. Redistributing the Visual C++ 4.2 application using a static build of MFC also corrects the problem.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug has been corrected in Visual Studio 97 Service Pack 1. For additional information about the Visual Studio 97 Service Pack 1, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q170365 TITLE : INFO: Visual Studio 97 Service Packs - What, Where, and Why Keywords : MfcDatabase vcbuglist500 VS97FixlistSP3 kbprg VS97FixlistSP2 VS97FixlistSP1 Version : 4.2 4.2b 5.0 Platform : NT WINDOWS Issue type : kbbug Solution Type : kbfix kbservicepack |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |