changeset 364:37f54743b1fd

Correcting invalid documentation URL refs.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 16 Sep 2020 17:13:26 +0200 (2020-09-16)
parents 34ce6e1b1be8
children 63cccacad468
files release.txt
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/release.txt
+++ b/release.txt
@@ -38,7 +38,7 @@ Multiple connection properties are separ
 For example:
   jdbc:monetdb://localhost:41000/mydb?user=monetdb&password=onlyiknow&so_timeout=20000&treat_clob_as_varchar=true&treat_blob_as_binary=true
 
-See also: https://www.monetdb.org/Documentation/Manuals/SQLreference/Programming/JDBC
+See also: https://www.monetdb.org/Documentation/SQLreference/Programming/JDBC
 
 
 JDBC COMPLIANCE
@@ -173,7 +173,7 @@ Notes and Tips for Java Programmers usin
   This eliminates the call to findColumn(String columnLabel) for
   each value of every column for every row in the ResultSet.
   See also the example Java JDBC program on:
-  https://www.monetdb.org/Documentation/Manuals/SQLreference/Programming/JDBC
+  https://www.monetdb.org/Documentation/SQLreference/Programming/JDBC
 
 - Avoid using rs.getObject() as it will need to construct a new Object for
   each value, even for primitive types such as int, long, boolean.