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 b1d070fbd8..6d6bbda820 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 @@ -3624,6 +3624,7 @@ SELECT [TABLE].[COLUMN] FROM [TABLE] -- SQL Server style]]>
AS_IS (the default): Generate keywords as they are defined in the codebase (mostly lower case).LOWER: Generate keywords in lower case.UPPER: Generate keywords in upper case.PASCAL: Generate keywords in pascal case.diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml index 99c330a146..2608123ca7 100644 --- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml +++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml @@ -3595,29 +3595,43 @@ SELECT [TABLE].[COLUMN] FROM [TABLE] -- SQL Server style]]>
- The renderNameStyle setting allows for overriding the name of all identifiers in jOOQ to a consistent style. Possible options are:
+ The renderQuotedNames and renderNameCase settings allow for overriding the name of all identifiers in jOOQ to a consistent style. Possible options are:
QUOTED (the default): This will generate all names in their proper case with quotes around them.AS_IS: This will generate all names in their proper case without quotes.ALWAYS: This will quote all identifiers.NEVER: This will not quote any identifiers.AS_IS: This will generate all names in their proper case.LOWER: This will transform all names to lower case.UPPER: This will transform all names to upper case.
+ The two flags are independent of one another. If your database supports quoted, case sensitive identifiers, then using LOWER or UPPER on quoted identifiers may not work.
+
Programmatic configuration
XML configuration
@@ -3634,13 +3648,14 @@ SELECT [TABLE].[COLUMN] FROM [TABLE] -- SQL Server style]]>
- Users may wish to adapt this and they have these options for the renderKeywordStyle setting:
+ Users may wish to adapt this and they have these options for the renderKeywordCase setting:
AS_IS (the default): Generate keywords as they are defined in the codebase (mostly lower case).LOWER: Generate keywords in lower case.UPPER: Generate keywords in upper case.PASCAL: Generate keywords in pascal case.@@ -3648,14 +3663,14 @@ SELECT [TABLE].[COLUMN] FROM [TABLE] -- SQL Server style]]>
XML configuration