| com.quadcap.sql.StatementContext
All known Subclasses: com.quadcap.sql.ExportedKeys, com.quadcap.sql.UpdateIndex, com.quadcap.sql.DeletedRows,
StatementContext | public interface StatementContext (Code) | | This interface models some stateful action that is associated with
the execution of a statement, but which can't be actually performed
until the end of the statement execution.
author: Stan Bailes |
Method Summary | |
public void | finish(boolean abort) Called at statement end (not necessarily a transaction end) or if
the statement aborts. | public int | priority() At statement end, statement contexts are finished in priority order,
lowest number first. |
finish | public void finish(boolean abort) throws SQLException, IOException(Code) | | Called at statement end (not necessarily a transaction end) or if
the statement aborts.
|
priority | public int priority()(Code) | | At statement end, statement contexts are finished in priority order,
lowest number first.
|
|
|