Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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.