OLE DB Simple Provider Toolkit

OLEDBSimpleProviderListener::deletedRows

An event handler method, implemented through OLEDBSimpleProvider::addOLEDBSimpleProviderListener. It indicates that cRows were deleted beginning at row iRow. The notification is issued when rows are deleted through OLEDBSimpleProvider::deleteRows or internally by a provider.

HRESULT deletedRows (
   LONG   iRow,
   LONG   cRows);

Parameters

iRow
[in]
The row position of the changed cell(s).
cRows
[in]
Number of rows to be deleted.

Return Codes

S_OK
The method succeeded.
E_FAIL
A provider-specific error occurred.

Comments

OLEDBSimpleProviderListener::deletedRows should be called after the rows are deleted.