Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
org.jooq.tools |
The
org.jooq.tools package contains jOOQ's public utilities. |
Modifier and Type | Method and Description |
---|---|
void |
ExecuteListener.bindEnd(ExecuteContext ctx)
Called after binding variables to the
PreparedStatement
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.bindStart(ExecuteContext ctx)
Called before binding variables to the
PreparedStatement
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.end(ExecuteContext ctx)
Called at the end of the execution lifecycle.
|
void |
ExecuteListener.exception(ExecuteContext ctx)
Called in the event of an exception at any moment of the execution
lifecycle.
|
void |
ExecuteListener.executeEnd(ExecuteContext ctx)
Called after executing a statement
Available attributes from
ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.executeStart(ExecuteContext ctx)
Called before executing a statement
Available attributes from
ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.fetchEnd(ExecuteContext ctx)
Called after fetching data from a
ResultSet . |
void |
ExecuteListener.fetchStart(ExecuteContext ctx)
Called before fetching data from a
ResultSet . |
void |
ExecuteListener.prepareEnd(ExecuteContext ctx)
Called after preparing / creating the SQL statement
Available attributes from
ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.prepareStart(ExecuteContext ctx)
Called before preparing / creating the SQL statement
Available attributes from
ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.recordEnd(ExecuteContext ctx)
Called after fetching a record from a
ResultSet
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.recordStart(ExecuteContext ctx)
Called before fetching a record from a
ResultSet
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.renderEnd(ExecuteContext ctx)
Called after rendering SQL from a
QueryPart
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.renderStart(ExecuteContext ctx)
Called before rendering SQL from a
QueryPart
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
|
void |
ExecuteListener.resultEnd(ExecuteContext ctx)
Called after fetching a set of records from a
ResultSet
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.resultStart(ExecuteContext ctx)
Called before fetching a set of records from a
ResultSet
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
sql() : The rendered SQL statement
that is about to be executed, or null if the
SQL statement is unknown.. |
void |
ExecuteListener.start(ExecuteContext ctx)
Called to initialise an
ExecuteListener
Available attributes from ExecuteContext :
connection() : The connection used for
execution
configuration() : The execution configuration
query() : The Query object, if a
jOOQ query is being executed or null otherwise
routine() : The Routine object, if
a jOOQ routine is being executed or null otherwise
Overridable attributes in ExecuteContext :
connectionProvider(ConnectionProvider) : The
connection provider used for execution. |
Modifier and Type | Method and Description |
---|---|
void |
DefaultExecuteListener.bindEnd(ExecuteContext ctx) |
void |
DefaultExecuteListener.bindStart(ExecuteContext ctx) |
void |
DefaultExecuteListener.end(ExecuteContext ctx) |
void |
DefaultExecuteListener.exception(ExecuteContext ctx) |
void |
DefaultExecuteListener.executeEnd(ExecuteContext ctx) |
void |
DefaultExecuteListener.executeStart(ExecuteContext ctx) |
void |
DefaultExecuteListener.fetchEnd(ExecuteContext ctx) |
void |
DefaultExecuteListener.fetchStart(ExecuteContext ctx) |
void |
DefaultExecuteListener.prepareEnd(ExecuteContext ctx) |
void |
DefaultExecuteListener.prepareStart(ExecuteContext ctx) |
void |
DefaultExecuteListener.recordEnd(ExecuteContext ctx) |
void |
DefaultExecuteListener.recordStart(ExecuteContext ctx) |
void |
DefaultExecuteListener.renderEnd(ExecuteContext ctx) |
void |
DefaultExecuteListener.renderStart(ExecuteContext ctx) |
void |
DefaultExecuteListener.resultEnd(ExecuteContext ctx) |
void |
DefaultExecuteListener.resultStart(ExecuteContext ctx) |
void |
DefaultExecuteListener.start(ExecuteContext ctx) |
Modifier and Type | Method and Description |
---|---|
void |
StopWatchListener.bindEnd(ExecuteContext ctx) |
void |
StopWatchListener.bindStart(ExecuteContext ctx) |
void |
StopWatchListener.end(ExecuteContext ctx) |
void |
StopWatchListener.exception(ExecuteContext ctx) |
void |
StopWatchListener.executeEnd(ExecuteContext ctx) |
void |
LoggerListener.executeEnd(ExecuteContext ctx) |
void |
StopWatchListener.executeStart(ExecuteContext ctx) |
void |
StopWatchListener.fetchEnd(ExecuteContext ctx) |
void |
StopWatchListener.fetchStart(ExecuteContext ctx) |
void |
StopWatchListener.prepareEnd(ExecuteContext ctx) |
void |
StopWatchListener.prepareStart(ExecuteContext ctx) |
void |
StopWatchListener.recordEnd(ExecuteContext ctx) |
void |
LoggerListener.recordEnd(ExecuteContext ctx) |
void |
StopWatchListener.recordStart(ExecuteContext ctx) |
void |
StopWatchListener.renderEnd(ExecuteContext ctx) |
void |
LoggerListener.renderEnd(ExecuteContext ctx) |
void |
StopWatchListener.renderStart(ExecuteContext ctx) |
void |
StopWatchListener.resultEnd(ExecuteContext ctx) |
void |
LoggerListener.resultEnd(ExecuteContext ctx) |
void |
StopWatchListener.resultStart(ExecuteContext ctx) |
void |
StopWatchListener.start(ExecuteContext ctx) |
Copyright © 2014. All Rights Reserved.