AdoRecordSetEvents:RecordChangeComplete()

<< Click to Display Table of Contents >>

Navigation:  Ado Events > AdoRecordSetEvents Class >

AdoRecordSetEvents:RecordChangeComplete()

Previous pageReturn to chapter overviewNext page

Note

Please note that event handling is not supported in the current version of Xs2Ado

Purpose

The RecordChangeComplete event is called after one or more records change

 

Prototype

METHOD RecordChangeComplete ( lReason, lRecords, oError,  lStatus, oRecordSet )  CLASS AdoRecordSetEvents

 

Argument(s)

lReason        An EventReasonEnum value that specifies the reason for this event

lRecords        A Long value that indicates the number of records changing (affected).

oError        An Error object. It describes the error that occurred if the value of lStatus is adStatusErrorsOccurred; otherwise it is not set

lStatus        An AdoEventStatusEnum status value.

oRecordSet        A Recordset object. The Recordset for which this event occurred

 

 

Description

A RecordChangeComplete event may occur for the first changed field in a row due to the following Recordset operations: Update, Delete, CancelUpdate, AddNew, UpdateBatch, and CancelBatch. The value of the Recordset CursorType determines which operations cause the events to occur.

 

 

See Also

AdoRecordSetEvents, AdoEventReasonEnum, AdoEventStatusEnum, AdoError