Package oracle.jdbc.dcn
Interface QueryChangeDescription
public interface QueryChangeDescription
This interface describes a query result change.
The information includes:
- The query id;
- The type of query change event;
- A description at the table level of the changes that affect the result of the query..
- Since:
- 11.1
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionReturns the type of query change event.longReturns the id of the query which result has changed.Returns the table level change description of this query result.
-
Method Details
-
getQueryId
long getQueryId()Returns the id of the query which result has changed. -
getQueryChangeEventType
QueryChangeDescription.QueryChangeEventType getQueryChangeEventType()Returns the type of query change event. -
getTableChangeDescription
TableChangeDescription[] getTableChangeDescription()Returns the table level change description of this query result.
-