public method O2GTablesUpdatesReader.getUpdateType

Brief

Gets the type of a table update.

Declaration
Java
O2GTableUpdateType  getUpdateType (int index)

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 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