Available attributes from ExecuteContext
:
Query
object, if a jOOQ query is being executed or null
otherwiseRoutine
object, if a jOOQ routine is being executed or null
otherwiseSQL
statement that is about to be executed, or null
if the SQL
statement is unknown..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 {@link StatementType#PREPARED_STATEMENT}java.sql.Statement
from your JDBC driver wrapped in a java.sql.PreparedStatement
when your jOOQ Query
is being executed as {@link StatementType#STATIC_STATEMENT}java.sql.CallableStatement
when you are executing a jOOQ Routine
Overridable attributes in ExecuteContext
:
Statement
, PreparedStatement
, or CallableStatement
that is about to be executed. You can modify this statement freely, or wrap {@link ExecuteContext#statement()}with your enriched statement wrapper
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|