CDynamicAccessor::SetValue

template < class ctype >
bool SetValue( TCHAR *
pColumnName, const ctype& data );

template < class ctype >
bool SetValue( ULONG
nColumn, const ctype& data );

Return Value

Returns true if the specified column exists. Otherwise, it returns false.

Template Arguments

ctype

[in] A templated parameter to handle all of the various data types except TCHAR (which requires special handling). When you use a data type, SetValue uses the appropriate data type.

Parameters

pColumnName

[in] The column name.

data

[in] The pointer to the memory containing the data.

nColumn

[in] The column number.

Remarks

Stores data to a specified column.

CDynamicAccessor OverviewClass Members