The information in this article applies to:
SYMPTOMSAn invalid number of parameters or an assertion can occur when you attempt to open a CRecordset derived class. CAUSEThe MFC Recordset class binds parameters to member variables by calling the DoFieldExchange() member function. When you use bulk row fetching, the binding is done by calling the DoBulkFieldExchange() member function. However when you bind parameters, MFC calls a common function, BindParams, to perform the binding in either case. There is currently a bug with BindParams in that it does not check to see if bulk row fetching is being used and does not implement DoBulkFieldExchange() for binding parameters. RESOLUTIONThe best workaround for this problem is to have DoFieldExchange() call DoBulkFieldExchange() explicitly, as in the following example:
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available. REFERENCESVisual C++ Programmer's Guide: Adding Program Functionality; Details; Database Topics (ODBC); Recordset (ODBC); Recordset: Fetching Records in Bulk (ODBC) Additional query words: kbMFC kbDatabase kbODBC kbVC500bug kbDSupport kbdse
Keywords : |
Last Reviewed: July 22, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |