BEGIN_PROVIDER_COLUMN_MAP

BEGIN_PROVIDER_COLUMN_MAP( theClass )

Parameters

theClass

[in] The name of the class this map belongs to.

Remarks

Marks the beginning of the provider column map entries.

Macros for OLE DB Provider Templates

Example

Here is a sample provider column map:

BEGIN_PROVIDER_COLUMN_MAP(CWindowsFile)
   PROVIDER_COLUMN_ENTRY("FileAttributes", 1, dwFileAttributes)
   PROVIDER_COLUMN_ENTRY("FileSizeHigh", 2, nFileSizeHigh)
   PROVIDER_COLUMN_ENTRY("FileSizeLow", 3, nFileSizeLow)
   PROVIDER_COLUMN_ENTRY("FileName", 4, cFileName)
   PROVIDER_COLUMN_ENTRY("AltFileName", 5, cAlternateFileName)
END_PROVIDER_COLUMN_MAP()

See Also

Using the OLE DB Provider Templates, The OLE DB Provider Architecture, Creating an OLE DB Provider