Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

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


View products that this article applies to.

This article was previously published under Q181480

↑ Back to the top


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

↑ Back to the top


Cause

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

↑ Back to the top


Resolution

This problem has been fixed in MDAC 2.6. For MDAC versions before 2.6 use the following workarounds:

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.

↑ Back to the top


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.

↑ Back to the top


References

Visual C++, Microsoft Foundation Class Reference, Class Library Reference: Crecordset; CDatabase

↑ Back to the top


Keywords: kbmdacnosweep, kbbug, kbfix, kbjet, kbmdac260fix, KB181480

↑ Back to the top

Article Info
Article ID : 181480
Revision : 4
Created on : 11/21/2006
Published on : 11/21/2006
Exists online : False
Views : 372