Changeset: 672523c56341 for monetdb-java URL: https://dev.monetdb.org/hg/monetdb-java?cmd=changeset;node=672523c56341 Modified Files: src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in Branch: embedded Log Message:
Add choices to embedded connection parameters diffs (17 lines): diff --git a/src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in b/src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in --- a/src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in +++ b/src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in @@ -195,11 +195,13 @@ public final class MonetDriver implement prop = new DriverPropertyInfo("silentFlag", "true"); prop.required = false; prop.description = "Don't produce output from the server (i.e. debug) (Embedded connection only)"; + prop.choices = boolean_choices; dpi[9] = prop; prop = new DriverPropertyInfo("sequentialFlag", "false"); prop.required = false; prop.description = "Use sequential pipeline instead of default pipeline (Embedded connection only)"; + prop.choices = boolean_choices; dpi[10] = prop; /* next property is no longer supported in: new MonetConnection(props) _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list