From 649867c30f4feb307654995d49f60deba8cc5841 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Fri, 14 Dec 2018 14:20:03 +0100 Subject: [PATCH] [#6260] Support loading multiple files in XMLDatabase --- .../resources/org/jooq/web/manual-3.12.xml | 27 ++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) 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' + } } } }