public method O2GTablesUpdatesReader.getUpdateType

Brief

Gets the type of a table update.

Declaration
C#
O2GTableUpdateType  getUpdateType (int index)

Parameters
index

The index of the update.

Details

The type of a table update defines what operation has been performed on a table.

The possible return values are:

Insert

A row is inserted in a table.

Update

A row of a table is updated.

Delete

A row is deleted from a table.

To find out which table is affected, use the getUpdateTable method of the class.

Declared in O2GTablesUpdatesReader

back