IRowsetUpdateImpl Class

 

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 IRowsetUpdateImpl Class.

The OLE DB Templates implementation of the IRowsetUpdate interface.

template <  
   class T,   
   class Storage,   
   class UpdateArray = CAtlArray<Storage>,   
   class RowClass = CSimpleRow,   
   class MapClass = CAtlMap <RowClass::KeyType, RowClass*>   
>  
class IRowsetUpdateImpl : public IRowsetChangeImpl<  
   T,   
   Storage,   
   IRowsetUpdate,   
   RowClass,   
   MapClass  
>  

Parameters

T
A class derived from IRowsetUpdateImpl.

Storage
The user record.

UpdateArray
An array containing cached data for updating the rowset.

RowClass
The storage unit for the HROW.

MapClass
The storage unit for all row handles held by the provider.

Interface Methods (Used with IRowsetChange)

SetDataSets data values in one or more columns.

Interface Methods (Used with IRowsetUpdate)

GetOriginalDataGets the data most recently transmitted to or obtained from the data source, ignoring pending changes.
GetPendingRowsReturns a list of rows with pending changes.
GetRowStatusReturns the status of specified rows.
UndoUndoes any changes to the row since the last fetch or update.
UpdateTransmits any changes made to the row since the last fetch or update.

Implementation Methods (Callback)

IsUpdateAllowedUsed to check for security, integrity, and so on before allowing updates.

Data Members

m_mapCachedDataContains the original data for the deferred operation.

You should first read and understand the documentation for IRowsetChange, because everything described there also applies here. You should also read chapter 6 of the OLE``DB``Programmer's``Reference on setting data.

IRowsetUpdateImpl implements the OLE DB IRowsetUpdate interface, which enables consumers to delay the transmission of changes made with IRowsetChange to the data source and undo changes before transmission.

System_CAPS_ICON_important.jpg Important

It is strongly recommended that you read the following documentation BEFORE attempting to implement your provider:

Header: atldb.h

OLE DB Provider Templates
OLE DB Provider Template Architecture
Creating an Updatable Provider

Show: