Skip to content

Latest commit

 

History

History
59 lines (52 loc) · 1.51 KB

File metadata and controls

59 lines (52 loc) · 1.51 KB
title IRowsetImpl::m_bReset | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic article
f1_keywords
ATL.IRowsetImpl.m_bReset
IRowsetImpl.m_bReset
m_bReset
IRowsetImpl::m_bReset
ATL::IRowsetImpl::m_bReset
dev_langs
C++
helpviewer_keywords
m_bReset
ms.assetid d423f9f3-4d48-4d0c-b152-684c81a0b34e
caps.latest.revision 8
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

IRowsetImpl::m_bReset

A bit flag used to determine if the cursor position is defined on the rowset.

Syntax

  
unsigned m_bReset:1;  
  

Remarks

If the consumer calls GetNextRows with a negative lOffset or cRows and m_bReset is true, GetNextRows moves to the end of the rowset. If m_bReset is false, the consumer receives an error code, in conformance with the OLE DB specification. The m_bReset flag gets set to true when the rowset is first created and when the consumer calls IRowsetImpl::RestartPosition. It gets set to false when you call GetNextRows.

Requirements

Header: atldb.h

See Also

IRowsetImpl Class