insertedRows
Indicates that the specified rows were inserted, beginning at the row position specified by iRow. insertedRows is an event handler method, implemented through OLEDBSimpleProvider::addOLEDBSimpleProviderListener. This notification is issued when rows are inserted through OLEDBSimpleProvider::insertRows or internally through a provider.
Important
This feature will be removed in a future version of Windows. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Instead, write a fully functional OLE DB provider using the native OLE DB interfaces.
Syntax
HRESULT insertedRows (
DBROWCOUNT iRow,
DBROWCOUNT cRows);
Parameters
iRow
[in] Starting position of the inserted rows.cRows
[in] Number of inserted rows.
Return Codes
S_OK
The method succeeded.E_FAIL
A provider-specific error occurred.