From ca98250aae4a5c7023b9eb78ac52f1138fd54943 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Fri, 26 Jan 2018 10:10:31 +0100 Subject: [PATCH] [#7087] Added documentation --- .../resources/org/jooq/web/manual-3.11.xml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) 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