PreparedStatement 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.CallableStatement when you are executing a jOOQ RoutineNote that this method is not called when executing queries of type {@link StatementType#STATIC_STATEMENT}
| |
| |
| |
| |
| |
| |