Improve documentation on the possibility of leaving <inputSchema/> empty

This commit is contained in:
Lukas Eder 2012-05-25 15:02:06 +02:00
parent 2150f95d2c
commit 2725877103
2 changed files with 5 additions and 1 deletions

View File

@ -157,6 +157,7 @@
The schema that is used locally as a source for meta information.
This could be your development schema or the production schema, etc
This cannot be combined with the schemata element.
If left empty (and without any schemata element), jOOQ will generate all available schemata.
For backwards compatibility, this defaults to jdbc/schema
-->
<element name="inputSchema" type="string" default="" minOccurs="0" maxOccurs="1" />

View File

@ -1525,7 +1525,10 @@ public void bind(BindContext context) throws DataAccessException;</java>
<!-- The schema that is used locally as a source for meta information.
This could be your development schema or the production schema, etc
This cannot be combined with the schemata element. -->
This cannot be combined with the schemata element.
If left empty, jOOQ will generate all available schemata. See the
manual's next section to learn how to generate several schemata -->
<inputSchema>[your database schema / owner / name]</inputSchema>
</database>