Mercurial > hg > monetdb-java
changeset 229:672523c56341 embedded
Add choices to embedded connection parameters
author | Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> |
---|---|
date | Tue, 08 May 2018 19:11:04 +0200 (2018-05-08) |
parents | 51e886d7f3b4 |
children | 3c3345a298f2 |
files | src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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)