# HG changeset patch # User Martin van Dinther <martin.van.dinther@monetdbsolutions.com> # Date 1507222981 -7200 # Node ID 3715e8550be1bcda9f56a1f0fab823d6f7d8b70f # Parent 237816fef5867b0017d9b2ffdeeffdf65176f0da Correct the property separator. Should be a & instead of a ; diff --git a/release.txt b/release.txt --- a/release.txt +++ b/release.txt @@ -6,7 +6,7 @@ This JDBC driver is designed for use wit For more information see https://www.monetdb.org/ The MonetDB JDBC connection URL format is: - jdbc:monetdb://<hostname>[:<portnr>]/<databasename>[?<property>=<value>[;<property>=<value>]] + jdbc:monetdb://<hostname>[:<portnr>]/<databasename>[?<property>=<value>[&<property>=<value>]] The databasename must be provided and be equal to the name of the database served by the mserver5 process listening on the specified host and port number (default port is 50000). @@ -23,7 +23,7 @@ Supported connection properties are: logfile=<name of logfile> For example: - jdbc:monetdb://localhost:41000/demo?user=monetdb;password=monetdb;so_timeout=7000;treat_clob_as_varchar=true + jdbc:monetdb://localhost:41000/demo?user=monetdb&password=monetdb&so_timeout=7000&treat_clob_as_varchar=true See also: https://www.monetdb.org/Documentation/Manuals/SQLreference/Programming/JDBC