Interface DmlParser
-
- All Known Implementing Classes:
LogMinerDmlParser
public interface DmlParserContract for a DML parser for LogMiner.- Author:
- Chris Cranford
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LogMinerDmlEntryparse(String sql, Table table, String txId)Parse a DML SQL string from the LogMiner event stream.
-
-
-
Method Detail
-
parse
LogMinerDmlEntry parse(String sql, Table table, String txId)
Parse a DML SQL string from the LogMiner event stream.- Parameters:
sql- the sql statementtable- the table the sql statement is fortxId- the current transaction id the sql is part of.- Returns:
- the parsed sql as a DML entry or
nullif the SQL couldn't be parsed. - Throws:
DmlParserException- thrown if a parse exception is detected.
-
-