Uses of Interface
io.debezium.connector.oracle.logminer.valueholder.LogMinerDmlEntry
-
Packages that use LogMinerDmlEntry Package Description io.debezium.connector.oracle.logminer io.debezium.connector.oracle.logminer.parser io.debezium.connector.oracle.logminer.valueholder -
-
Uses of LogMinerDmlEntry in io.debezium.connector.oracle.logminer
Fields in io.debezium.connector.oracle.logminer declared as LogMinerDmlEntry Modifier and Type Field Description private LogMinerDmlEntryTransactionalBuffer.LogMinerEvent. entryMethods in io.debezium.connector.oracle.logminer that return LogMinerDmlEntry Modifier and Type Method Description LogMinerDmlEntryTransactionalBuffer.LogMinerEvent. getEntry()private LogMinerDmlEntryLogMinerQueryResultProcessor. parse(String redoSql, Table table, String txId)Method parameters in io.debezium.connector.oracle.logminer with type arguments of type LogMinerDmlEntry Modifier and Type Method Description (package private) voidTransactionalBuffer. registerDmlOperation(int operation, String transactionId, Scn scn, TableId tableId, Supplier<LogMinerDmlEntry> entrySupplier, Instant changeTime, String rowId, Object rsId)Register a DML operation with the transaction buffer.Constructors in io.debezium.connector.oracle.logminer with parameters of type LogMinerDmlEntry Constructor Description DmlEvent(int operation, LogMinerDmlEntry entry, Scn scn, TableId tableId, String rowId, Object rsId)LogMinerEvent(int operation, LogMinerDmlEntry entry, Scn scn, TableId tableId, String rowId, Object rsId)SelectLobLocatorEvent(int operation, LogMinerDmlEntry entry, String columnName, boolean binaryData, Scn scn, TableId tableId, String rowId, Object rsId) -
Uses of LogMinerDmlEntry in io.debezium.connector.oracle.logminer.parser
Methods in io.debezium.connector.oracle.logminer.parser that return LogMinerDmlEntry Modifier and Type Method Description LogMinerDmlEntryDmlParser. parse(String sql, Table table, String txId)Parse a DML SQL string from the LogMiner event stream.LogMinerDmlEntryLogMinerDmlParser. parse(String sql, Table table, String txId)LogMinerDmlEntrySelectLobParser. parse(String sql, Table table)Parse the supplied SEL_LOB_LOCATOR event redo SQL statement.LogMinerDmlEntrySimpleDmlParser. parse(String dmlContent, Table table, String txId)This parses a DMLprivate LogMinerDmlEntryLogMinerDmlParser. parseDelete(String sql, Table table)Parses a SQLDELETEstatement.private LogMinerDmlEntryLogMinerDmlParser. parseInsert(String sql, Table table)Parse anINSERTSQL statement.private LogMinerDmlEntryLogMinerDmlParser. parseUpdate(String sql, Table table)Parse anUPDATESQL statement. -
Uses of LogMinerDmlEntry in io.debezium.connector.oracle.logminer.valueholder
Classes in io.debezium.connector.oracle.logminer.valueholder that implement LogMinerDmlEntry Modifier and Type Class Description classLogMinerDmlEntryImplThis class holds one parsed DML LogMiner record detailsMethods in io.debezium.connector.oracle.logminer.valueholder that return LogMinerDmlEntry Modifier and Type Method Description static LogMinerDmlEntryLogMinerDmlEntryImpl. forDelete(Object[] oldColumnValues)static LogMinerDmlEntryLogMinerDmlEntryImpl. forInsert(Object[] newColumnValues)static LogMinerDmlEntryLogMinerDmlEntryImpl. forLobLocator(Object[] newColumnValues)static LogMinerDmlEntryLogMinerDmlEntryImpl. forUpdate(Object[] newColumnValues, Object[] oldColumnValues)
-