From 98f01856818cd6089060247f495905dcd38ca205 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Tue, 29 Jan 2019 13:10:43 +0100 Subject: [PATCH] [#8264] Expose new Settings.parseDialect in ParserCLI --- .../src/main/resources/org/jooq/web/manual-3.12.xml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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 1a6d5a1171..4160147c1e 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 @@ -10160,12 +10160,13 @@ from ( Specify the output keyword style (org.jooq.conf.RenderKeywordStyle) - -i / --identifier Specify the output identifier style (org.jooq.conf.RenderNameStyle) - -t / --to-dialect Specify the output dialect (org.jooq.SQLDialect) - -s / --sql Specify the input SQL string + -f / --formatted Format output SQL + -h / --help Display this help + -k / --keyword Specify the output keyword style (org.jooq.conf.RenderKeywordStyle) + -i / --identifier Specify the output identifier style (org.jooq.conf.RenderNameStyle) + -f / --from-dialect Specify the input dialect (org.jooq.SQLDialect) + -t / --to-dialect Specify the output dialect (org.jooq.SQLDialect) + -s / --sql Specify the input SQL string $ java -cp jooq-{jooq-version}.jar org.jooq.ParserCLI -t ORACLE -s "SELECT substring('abcde', 2, 3)" select substr('abcde', 2, 3) from dual;]]>