Module org.jooq
Package org.jooq.impl

Interface QOM.Execute

All Superinterfaces:
QueryPart, Serializable, Statement
Enclosing class:
QOM

@Pro public static interface QOM.Execute extends Statement
The EXECUTE function.

Execute a statement dynamically from within procedural code.

Many dialects support some way of running procedural and SQL statements dynamically from within procedural code. For example, in Oracle, this syntax is required to run DDL statements from PL/SQL:


 BEGIN
   EXECUTE IMMEDIATE 'CREATE TABLE x (i INT)';
 END;