diff --git a/jOOQ-website/src/main/resources/manual.xml b/jOOQ-website/src/main/resources/manual.xml index 16ac51b9ab..62f1210462 100644 --- a/jOOQ-website/src/main/resources/manual.xml +++ b/jOOQ-website/src/main/resources/manual.xml @@ -4500,6 +4500,13 @@ create.selectFrom(T_AUTHOR).fetch();
The query executed with a Factory equipped with the above mapping will in fact produce this SQL statement:
+ Table mapping and schema mapping can be applied independently, by specifying several MappedSchema entries + in the above configuration. jOOQ will process them in order of appearance and map at first match. Note that + you can always omit a MappedSchema's output value, in case of which, only the table mapping is applied. + If you omit a MappedSchema's input value, the table mapping is applied to all schemata! +
+Note that you can also hard-wire schema mapping in generated artefacts