PRB: CDaoRecordView Bookmark Members Invalid After Requery()Last reviewed: June 26, 1997Article ID: Q145686 |
The information in this article applies to:
SYMPTOMSIn some cases, when you use CDaoRecordView, added records will not show up in the result set after calling Requery() on the CDaoRecordset.
CAUSECDaoRecordView 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().
RESOLUTIONTo 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.
STATUSThis behavior is by design. |
Keywords : kbusage MfcDAO
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |