Interface LogMinerDmlEntry
- All Known Implementing Classes:
LogMinerDmlEntryImpl
public interface LogMinerDmlEntry
-
Method Summary
Modifier and TypeMethodDescriptionObject[]Object[]voidsetObjectName(String name) Sets table namevoidsetObjectOwner(String name) Sets schema owner
-
Method Details
-
getOldValues
Object[] getOldValues()- Returns:
- object array that contains the before state, values from WHERE clause.
-
getNewValues
Object[] getNewValues()- Returns:
- object array that contains the after state, values from an insert's values list or the values in the SET clause of an update statement.
-
getEventType
EventType getEventType()- Returns:
- LogMiner event type
-
getObjectOwner
String getObjectOwner()- Returns:
- schema name
-
getObjectName
String getObjectName()- Returns:
- table name
-
setObjectName
Sets table name- Parameters:
name- table name
-
setObjectOwner
Sets schema owner- Parameters:
name- schema owner
-