Skip to content

Latest commit

 

History

History
61 lines (51 loc) · 1.88 KB

File metadata and controls

61 lines (51 loc) · 1.88 KB
title CAccessorRowset Class | 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
CAccessorRowset
ATL.CAccessorRowset
ATL::CAccessorRowset
dev_langs
C++
helpviewer_keywords
CAccessorRowset class
ms.assetid bd4f58ed-cebf-4d43-8985-1e5fcbf06953
caps.latest.revision 12
author mikeblome
ms.author mblome
manager ghogen

CAccessorRowset Class

Encapsulates a rowset and its associated accessors in a single class.

Syntax

template <   
   class TAccessor = CNoAccessor,    
   template <typename T> class TRowset = CRowset    
>  
class CAccessorRowset :   
   public TAccessor,    
   public TRowset<TAccessor>  

Parameters

TAccessor
An accessor class.

TRowset
A rowset class.

Members

Methods

Bind Creates bindings (used when bBind is specified as false in CCommand::Open).
CAccessorRowset Constructor.
Close Closes the rowset and any accessors.
FreeRecordMemory Frees any columns in the current record that need to be freed.
GetColumnInfo Implements IColumnsInfo::GetColumnInfo.

Remarks

Class TAccessor manages the accessor. Class TRowset manages the rowset.

Requirements

Header: atldbcli.h

See Also

OLE DB Consumer Templates
OLE DB Consumer Templates Reference