public method IO2GTablesUpdatesReader.getUpdateType

Brief

Gets the type of a table update.

Declaration
C++
virtual O2GTableUpdateType  getUpdateType (int index) = 0

Parameters
index

The index of a row in the reader. The index must be between 0 and size() - 1.

Details

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

The possible return values are as follows:

Insert

A row is inserted in a table.

Update

A table row 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 IO2GTablesUpdatesReader

back