BEGIN_ACCESSOR_MAP
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at BEGIN_ACCESSOR_MAP.
Marks the beginning of the accessor map entries.
Syntax
BEGIN_ACCESSOR_MAP(
x
,
num
)
Parameters
x
[in] The name of the user record class.
num
[in] The number of accessors in this accessor map.
Remarks
In the case of multiple accessors on a rowset, you need to specify BEGIN_ACCESSOR_MAP
at the beginning and use the BEGIN_ACCESSOR
macro for each individual accessor. The BEGIN_ACCESSOR
macro is completed with the END_ACCESSOR
macro. The accessor map is completed with the END_ACCESSOR_MAP
macro.
If you have only one accessor in the user record, use the macro BEGIN_COLUMN_MAP.
Example
Requirements
Header: atldbcli.h
See Also
Macros and Global Functions for OLE DB Consumer Templates
BEGIN_ACCESSOR
END_ACCESSOR
END_ACCESSOR_MAP