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 RoutineStatement may be closed!ResultSet that was fetched or null, if no result set was fetched. Note that the ResultSet may already be closed!Record that was fetched or null if no records were fetched. | |
| |
| |
| |
| |
| |
| |
| |
| |
| |