changeset 176:e701b51b3552

Extend release.txt with information on MonetDB JDBC connection URL format
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 28 Sep 2017 16:23:15 +0200 (2017-09-28)
parents 8700d9ef2ace
children 4959b85b981c
files release.txt
diffstat 1 files changed, 24 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/release.txt
+++ b/release.txt
@@ -5,7 +5,30 @@ Release date: 2017-07-28
 This JDBC driver is designed for use with MonetDB, a main-memory
 database.  For more information see https://www.monetdb.org/.
 
-The JDBC driver complies to JDBC 4.1 definition, see
+The MonetDB JDBC connection URL format is:
+  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).
+
+Supported properties are:
+	user=<login name>
+	password=<secret value>
+	so_timeout=<time in milliseconds>
+	hash=<SHA1 or MD5>
+	language=<mal or sql>
+	treat_blob_as_binary=true
+	treat_clob_as_varchar=true
+	debug=true
+	logfile=<name of logfile>
+
+For example:
+  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
+
+
+The MonetDB JDBC driver complies to JDBC 4.1 definition, see
  http://docs.oracle.com/javase/7/docs/technotes/guides/jdbc/index.html
 
 Note: as of Jul2015 release we compile all the java sources to target: Java 1.7