java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java
branchv_0
changeset 104 245f1b88a3e6
parent 101 97b0d9069133
child 106 e9c3583580c8
--- a/java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java	Mon Dec 30 23:46:41 2013 +0100
+++ b/java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java	Tue Dec 31 17:35:33 2013 +0100
@@ -141,7 +141,7 @@
 		FormatterDefinition fd = configuration.getFormatter(options.getFormatterName());
 		try (DatabaseConnection c = dd.connect()) {
 			log.log(Level.FINE, "Database connected");
-			try (Formatter f = fd.getInstance(new FormatterContext(options.getOutputStream()))) {
+			try (Formatter f = fd.getInstance(new FormatterContext(options.getOutputStream(), options.getFormatterProperties()))) {
 				c.executeQuery(options.getSQLCommand(), f);
 			}
 		}