public class DefaultExecuteListener extends Object implements ExecuteListener
ExecuteListener.
 
 Use this to stay compatible with future API changes (i.e. added methods to
 ExecuteListener)
| Constructor and Description | 
|---|
| DefaultExecuteListener() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | bindEnd(ExecuteContext ctx)Called after binding variables to the  PreparedStatementAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | bindStart(ExecuteContext ctx)Called before binding variables to the  PreparedStatementAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | end(ExecuteContext ctx)Called at the end of the execution lifecycle. | 
| void | exception(ExecuteContext ctx)Called in the event of an exception at any moment of the execution
 lifecycle. | 
| void | executeEnd(ExecuteContext ctx)Called after executing a statement
 
 Available attributes from  ExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | executeStart(ExecuteContext ctx)Called before executing a statement
 
 Available attributes from  ExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | fetchEnd(ExecuteContext ctx)Called after fetching data from a  ResultSet. | 
| void | fetchStart(ExecuteContext ctx)Called before fetching data from a  ResultSet. | 
| void | prepareEnd(ExecuteContext ctx)Called after preparing / creating the SQL statement
 
 Available attributes from  ExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | prepareStart(ExecuteContext ctx)Called before preparing / creating the SQL statement
 
 Available attributes from  ExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | recordEnd(ExecuteContext ctx)Called after fetching a record from a  ResultSetAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | recordStart(ExecuteContext ctx)Called before fetching a record from a  ResultSetAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | renderEnd(ExecuteContext ctx)Called after rendering SQL from a  QueryPartAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | renderStart(ExecuteContext ctx)Called before rendering SQL from a  QueryPartAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwise | 
| void | resultEnd(ExecuteContext ctx)Called after fetching a set of records from a  ResultSetAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | resultStart(ExecuteContext ctx)Called before fetching a set of records from a  ResultSetAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwiseExecuteContext.sql(): The renderedSQLstatement
 that is about to be executed, ornullif theSQLstatement is unknown.. | 
| void | start(ExecuteContext ctx)Called to initialise an  ExecuteListenerAvailable attributes fromExecuteContext:ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): TheQueryobject, if a
 jOOQ query is being executed ornullotherwiseExecuteContext.routine(): TheRoutineobject, if
 a jOOQ routine is being executed ornullotherwise
 
 Overridable attributes inExecuteContext:ExecuteContext.connectionProvider(ConnectionProvider): The
 connection provider used for execution. | 
| void | warning(ExecuteContext ctx)Called in the event of a warning at any moment of the execution
 lifecycle. | 
public void start(ExecuteContext ctx)
ExecuteListenerExecuteListener
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext:
 ExecuteContext.connectionProvider(ConnectionProvider): The
 connection provider used for execution. This may be particularly
 interesting if a Query was de-serialised and is thus lacking the
 underlying connectionstart in interface ExecuteListenerpublic void renderStart(ExecuteContext ctx)
ExecuteListenerQueryPart
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiserenderStart in interface ExecuteListenerpublic void renderEnd(ExecuteContext ctx)
ExecuteListenerQueryPart
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..
 Overridable attributes in ExecuteContext:
 
ExecuteContext.sql(String): The rendered SQL
 statement that is about to be executed. You can modify this statement
 freely.renderEnd in interface ExecuteListenerpublic void prepareStart(ExecuteContext ctx)
ExecuteListener
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..
 Overridable attributes in ExecuteContext:
 
ExecuteContext.sql(String): The rendered SQL
 statement that is about to be executed. You can modify this statement
 freely.prepareStart in interface ExecuteListenerpublic void prepareEnd(ExecuteContext ctx)
ExecuteListener
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ Routine
 Overridable attributes in ExecuteContext:
 
ExecuteContext.statement(PreparedStatement): The
 Statement, PreparedStatement, or
 CallableStatement that is about to be executed. You can
 modify this statement freely, or wrap ExecuteContext.statement()
 with your enriched statement wrapperprepareEnd in interface ExecuteListenerpublic void bindStart(ExecuteContext ctx)
ExecuteListenerPreparedStatement
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ Routine
 Overridable attributes in ExecuteContext:
 
ExecuteContext.statement(PreparedStatement): The
 PreparedStatement, or CallableStatement that is
 about to be executed. You can modify this statement freely, or wrap
 ExecuteContext.statement() with your enriched statement wrapper
 Note that this method is not called when executing queries of type
 StatementType.STATIC_STATEMENT
bindStart in interface ExecuteListenerpublic void bindEnd(ExecuteContext ctx)
ExecuteListenerPreparedStatement
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ Routine
 Overridable attributes in ExecuteContext:
 
ExecuteContext.statement(PreparedStatement): The
 Statement, PreparedStatement, or
 CallableStatement that is about to be executed. You can
 modify this statement freely, or wrap ExecuteContext.statement()
 with your enriched statement wrapper
 Note that this method is not called when executing queries of type
 StatementType.STATIC_STATEMENT
bindEnd in interface ExecuteListenerpublic void executeStart(ExecuteContext ctx)
ExecuteListener
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ Routine
 Overridable attributes in ExecuteContext:
 
ExecuteContext.statement(PreparedStatement): The
 Statement, PreparedStatement, or
 CallableStatement that is about to be executed. You can
 modify this statement freely, or wrap ExecuteContext.statement()
 with your enriched statement wrapperexecuteStart in interface ExecuteListenerpublic void executeEnd(ExecuteContext ctx)
ExecuteListener
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineExecuteContext.resultSet(): The ResultSet that
 is about to be fetched or null, if the Query
 returns no result set, or if a Routine is being executed.ExecuteContext.rows(): The number of affected rows if
 applicable. In case a ResultSet is fetched, this number is only
 available at the ExecuteListener.fetchEnd(ExecuteContext) event.
 Overridable attributes in ExecuteContext:
 
ExecuteContext.resultSet(ResultSet): The
 ResultSet that is about to be fetched. You can modify this
 result set freely, or wrap ExecuteContext.resultSet() with your
 enriched result set wrapperexecuteEnd in interface ExecuteListenerpublic void fetchStart(ExecuteContext ctx)
ExecuteListenerResultSet.
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineExecuteContext.resultSet(): The ResultSet that
 is about to be fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the database or null if no warning was emitted.
 Overridable attributes in ExecuteContext:
 
ExecuteContext.resultSet(ResultSet): The
 ResultSet that is about to be fetched. You can modify this
 result set freely, or wrap ExecuteContext.resultSet() with your
 enriched result set wrapper
 In case of multiple ResultSets with
 ResultQuery.fetchMany(), this is called several times, once per
 ResultSet
 
Note that this method is not called when executing queries that do not return a result, or when executing routines.
fetchStart in interface ExecuteListenerpublic void resultStart(ExecuteContext ctx)
ExecuteListenerResultSet
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineExecuteContext.resultSet(): The ResultSet that
 is about to be fetched.ExecuteContext.result(): The set of records that are about to
 be fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the database or null if no warning was emitted.
 Note that this method is not called when executing queries that do not
 return a result, or when executing routines. This is also not called when
 fetching single records, with Cursor.fetchOne() for instance.
resultStart in interface ExecuteListenerpublic void recordStart(ExecuteContext ctx)
ExecuteListenerResultSet
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineExecuteContext.resultSet(): The ResultSet that
 is about to be fetched.ExecuteContext.record(): The Record that is
 about to be fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the database or null if no warning was emitted.Note that this method is not called when executing queries that do not return a result, or when executing routines.
recordStart in interface ExecuteListenerpublic void recordEnd(ExecuteContext ctx)
ExecuteListenerResultSet
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineExecuteContext.resultSet(): The ResultSet that
 is about to be fetched.ExecuteContext.record(): The last Record that
 was fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the database or null if no warning was emitted.Note that this method is not called when executing queries that do not return a result, or when executing routines.
recordEnd in interface ExecuteListenerpublic void resultEnd(ExecuteContext ctx)
ExecuteListenerResultSet
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineExecuteContext.resultSet(): The ResultSet that
 is about to be fetched.ExecuteContext.record(): The last Record that
 was fetched.ExecuteContext.result(): The set of records that were
 fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the database or null if no warning was emitted.
 Note that this method is not called when executing queries that do not
 return a result, or when executing routines. This is also not called when
 fetching single records, with Cursor.fetchOne() for instance.
resultEnd in interface ExecuteListenerpublic void fetchEnd(ExecuteContext ctx)
ExecuteListenerResultSet.
 
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineStatement is already closed!ExecuteContext.resultSet(): The ResultSet that
 was fetched. Note that the ResultSet is already closed!ExecuteContext.rows(): The number of affected rows if
 applicable.ExecuteContext.record(): The last Record that
 was fetched.ExecuteContext.result(): The last set of records that were
 fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the database or null if no warning was emitted.
 In case of multiple ResultSets with
 ResultQuery.fetchMany(), this is called several times, once per
 ResultSet
 
Note that this method is not called when executing queries that do not return a result, or when executing routines.
fetchEnd in interface ExecuteListenerpublic void end(ExecuteContext ctx)
ExecuteListener
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineStatement is already closed!ExecuteContext.resultSet(): The ResultSet that
 was fetched or null, if no result set was fetched. Note that
 the ResultSet may already be closed!ExecuteContext.rows(): The number of affected rows if
 applicable.ExecuteContext.record(): The last Record that
 was fetched or null if no records were fetched.ExecuteContext.result(): The last set of records that were
 fetched or null if no records were fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the database or null if no warning was emitted.end in interface ExecuteListenerpublic void exception(ExecuteContext ctx)
ExecuteListener
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineStatement may be closed!ExecuteContext.resultSet(): The ResultSet that
 was fetched or null, if no result set was fetched. Note that
 the ResultSet may already be closed!ExecuteContext.rows(): The number of affected rows if
 applicable.ExecuteContext.record(): The last Record that
 was fetched or null if no records were fetched.ExecuteContext.result(): The last set of records that were
 fetched or null if no records were fetched.ExecuteContext.exception(): The RuntimeException that
 is about to be thrownExecuteContext.sqlException(): The SQLException that
 was thrown by the databaseexception in interface ExecuteListenerpublic void warning(ExecuteContext ctx)
ExecuteListener
 Available attributes from ExecuteContext:
 
ExecuteContext.connection(): The connection used for
 executionExecuteContext.configuration(): The execution configurationExecuteContext.query(): The Query object, if a
 jOOQ query is being executed or null otherwiseExecuteContext.routine(): The Routine object, if
 a jOOQ routine is being executed or null otherwiseExecuteContext.sql(): The rendered SQL statement
 that is about to be executed, or null if the
 SQL statement is unknown..ExecuteContext.statement(): The
 PreparedStatement that is about to be executed, or
 null if no statement is known to jOOQ. This can be any of
 the following: java.sql.PreparedStatement from your JDBC driver when
 a jOOQ Query is being executed as
 StatementType.PREPARED_STATEMENTjava.sql.Statement from your JDBC driver wrapped in a
 java.sql.PreparedStatement when your jOOQ Query
 is being executed as StatementType.STATIC_STATEMENTjava.sql.CallableStatement when you are executing a
 jOOQ RoutineStatement may be closed!ExecuteContext.resultSet(): The ResultSet that
 was fetched or null, if no result set was fetched. Note that
 the ResultSet may already be closed!ExecuteContext.rows(): The number of affected rows if
 applicable.ExecuteContext.record(): The last Record that
 was fetched or null if no records were fetched.ExecuteContext.result(): The last set of records that were
 fetched or null if no records were fetched.ExecuteContext.sqlWarning(): The SQLWarning that was
 emitted by the databaseExecuteContext.exception(): The RuntimeException that
 is about to be thrown or null, if no exception is being
 thrown.ExecuteContext.sqlException(): The SQLException that
 was thrown by the database or null, if no exception is being
 thrown.warning in interface ExecuteListenerCopyright © 2015. All Rights Reserved.