PRB: CDaoRecordView Bookmark Members Invalid After Requery()

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

         4.2b, 5.0
    

SYMPTOMS

In some cases, when you use CDaoRecordView, added records will not show up in the result set after calling Requery() on the CDaoRecordset.

CAUSE

CDaoRecordView uses Jet engine bookmarks to determine when you are on the first or last record of the related CDaoRecordset. Jet engine bookmarks are not guaranteed to be valid following a Requery().

RESOLUTION

To avoid the problem, re-initialize the CDaoRecordView bookmark members to indicate that they are not valid bookmark values following any Requery() on the related CDaoRecordset. The following example shows how this might be done in a CDaoRecordView-derived class's OnMove() function:

   BOOL CMyRecordView::OnMove(UINT nIDMoveCommand)
   {
      CDaoRecordset* pRecordset = OnGetRecordset();
      if (m_bAddMode)
      {
         if (!UpdateData())
            return FALSE;
         try
         {
            pRecordset->Update();
         }
         catch (CDaoException* e)
         {
            AfxMessageBox(e->m_pErrorInfo->m_strDescription);
            e->Delete();
            return FALSE;
         }

         pRecordset->Requery();

         m_varBookmarkCurrent = 1L;   // <<- re-initialize
         m_varBookmarkFirst =         // <<- the bookmark
            m_varBookmarkLast = 0L;   // <<- member variables!

         UpdateData(FALSE);
         m_bAddMode = FALSE;
         return TRUE;
      }
      else
      {
         return CDaoRecordView::OnMove(nIDMoveCommand);
      }
   }

If you call Requery() in any other case from your CDaoRecordView-derived class, you should also perform this re-initialization.

STATUS

This behavior is by design.


Keywords : kbusage MfcDAO
Technology : kbMfc
Version : 4.0 4.1 4.1b 4.2 4.2b 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.