PRB: MFC ODBC Cannot Update Access Date/Time with No Date

Last reviewed: February 23, 1998
Article ID: Q181480
The information in this article applies to:
  • The Microsoft Foundation Classes (MFC) included with:

        - Microsoft Visual C++, 32-bit Editions, versions 5.0
    
  • Microsoft Access 97

SYMPTOMS

When you update records in an Access database using the ODBC cursor library and you previously added a date/time field in Access without a date using the CRecordset (with TIMESTAMP_STRUCT) classes, MFC throws the following exception:

   No Rows Affected

CAUSE

The ODBC WHERE clause fails to find the record it needs to update it.

RESOLUTION

You must always enter a date in the Access date/time field for CRecordset classes using the ODBC cursor library.

You can also resolve this problem by switching to dynasets.

MORE INFORMATION

If you have to use the ODBC cursor library, you must always enter a date along with a time in the Access date/time field. If you only enter a time, the recordset will fail to post updates and the MFC exception "No Rows Affected" will be thrown. This occurs because the ODBC cursor library attempts to update the database using an UPDATE clause and attempts to select all columns to ensure a unique record. During this selection, the date field fails to be resolved.

If you do not have to use the ODBC cursor library, you can open the recordset as a dynaset, which effectively eliminates this problem.

REFERENCES

     
Visual C++, Microsoft Foundation Class Reference, Class Library Reference: Crecordset; CDatabase
Keywords          : MfcDatabase
Component         : jet
Technology        : odbc kbmfc
Version           : WIN95:97,5.0 WINNT:97,5.0
Platform          : Win95 winnt
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: February 23, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.