diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml index de4a097e29..e8bee27716 100644 --- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml +++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml @@ -6264,6 +6264,37 @@ VALUES ('John', 'Hitchcock') +
+ The SET statement + +

+ Most databases support a variety of SET statements to set session specific environment variables. jOOQ supports two of these set statements that are particularly useful when running DDL scripts: +

+ + + + + +

+ Depending on whether your database supports , the above SET statements may be supported in your database. +

+ +

+ In MariaDB, MySQL, SQL Server, the SET CATALOG statement is emulated using: +

+ + + +

+ In Oracle, the SET SCHEMA statement is emulated using: +

+ + +
+
+
The ALTER statement