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 38ca21a856..087aeee3db 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 @@ -15877,10 +15877,30 @@ result.forEach((Object[] entities) -> { dialect MYSQL + + xmlFile /path/to/database.xml + + + + sort + semantic + @@ -15896,7 +15916,8 @@ result.forEach((Object[] entities) -> { .withName("org.jooq.meta.xml.XMLDatabase") .withProperties( new Property().withKey("dialect").withValue("MYSQL"), - new Property().withKey("xmlFile").withValue("/path/to/database.xml")))));]]> + new Property().withKey("xmlFile").withValue("/path/to/database.xml"), + new Property().withKey("sort").withValue("semantic")))));]]>

Gradle configuration @@ -15915,6 +15936,10 @@ result.forEach((Object[] entities) -> { key = 'xmlFile' value = '/path/to/database.xml' } + property { + key = 'sort' + value = 'semantic' + } } } }