comparison ChangeLog-Archive @ 927:d311affc65f0

Stop referring to monetdb.org/bugzilla, point straight to github.
author Sjoerd Mullender <sjoerd@acm.org>
date Mon, 07 Oct 2024 13:18:07 +0200 (6 months ago)
parents 01da1ea91c3f
children ff075ed5ce81
comparison
equal deleted inserted replaced
926:0ce63f3686fe 927:d311affc65f0
306 306
307 * Wed Sep 9 2020 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 307 * Wed Sep 9 2020 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
308 - Corrected Statement.executeBatch() method. It now implicitly clears the 308 - Corrected Statement.executeBatch() method. It now implicitly clears the
309 batch buffer, ready to accept new addBatch() calls without the need for 309 batch buffer, ready to accept new addBatch() calls without the need for
310 an explicit clearBatch() call. 310 an explicit clearBatch() call.
311 See also https://www.monetdb.org/bugzilla/show_bug.cgi?id=6953 311 See also https://github.com/MonetDB/MonetDB/issues/6953
312 312
313 * Wed Feb 19 2020 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 313 * Wed Feb 19 2020 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
314 - Corrected the return value of getCatalogTerm() to "cat". 314 - Corrected the return value of getCatalogTerm() to "cat".
315 315
316 * Wed Feb 12 2020 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 316 * Wed Feb 12 2020 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
320 * Thu Sep 26 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 320 * Thu Sep 26 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
321 - Compiled and released new jar files: monetdb-jdbc-2.29.jre7.jar, 321 - Compiled and released new jar files: monetdb-jdbc-2.29.jre7.jar,
322 monetdb-mcl-1.18.jre7.jar and jdbcclient.jre7.jar 322 monetdb-mcl-1.18.jre7.jar and jdbcclient.jre7.jar
323 - Following issues are resolved with this new MonetDB JDBC driver release: 323 - Following issues are resolved with this new MonetDB JDBC driver release:
324 - JDBC: Support for Connection.prepareCall() 324 - JDBC: Support for Connection.prepareCall()
325 See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6402 325 See https://github.com/MonetDB/MonetDB/issues/6402
326 We implemented the java.sql.CallableStatement interface. 326 We implemented the java.sql.CallableStatement interface.
327 - Jdbc connection hangs 327 - Jdbc connection hangs
328 See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6571 328 See https://github.com/MonetDB/MonetDB/issues/6571
329 - Mix of long and short queries make JDBC-driver hang 329 - Mix of long and short queries make JDBC-driver hang
330 See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6693 330 See https://github.com/MonetDB/MonetDB/issues/6693
331 - Example SQLcopyinto.java does not work 331 - Example SQLcopyinto.java does not work
332 See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6646 332 See https://github.com/MonetDB/MonetDB/issues/6646
333 Also improvements are made in: 333 Also improvements are made in:
334 - reducing the number of objects created (and thereby heap memory size) 334 - reducing the number of objects created (and thereby heap memory size)
335 - reducing number of methods called 335 - reducing number of methods called
336 - robustness, more checks on invalid parameter values 336 - robustness, more checks on invalid parameter values
337 - performance 337 - performance
390 - Implemented method MonetClob.getAsciiStream(). 390 - Implemented method MonetClob.getAsciiStream().
391 391
392 * Thu Mar 21 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 392 * Thu Mar 21 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
393 - Added implementation of java.sql.CallableStatement interface. Some standard 393 - Added implementation of java.sql.CallableStatement interface. Some standard
394 Java applications require this JDBC interface for executing SQL stored procedures. 394 Java applications require this JDBC interface for executing SQL stored procedures.
395 This implementation resolves request: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6402 395 This implementation resolves request: https://github.com/MonetDB/MonetDB/issues/6402
396 396
397 * Thu Mar 7 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 397 * Thu Mar 7 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
398 - Improved MonetDatabaseMetaData methods: 398 - Improved MonetDatabaseMetaData methods:
399 - getNumericFunctions(): it now includes functions: degrees, fuse, ms_round, ms_str, ms_trunc and radians. 399 - getNumericFunctions(): it now includes functions: degrees, fuse, ms_round, ms_str, ms_trunc and radians.
400 - getStringFunctions(): it now includes function: position. 400 - getStringFunctions(): it now includes function: position.
450 * Thu Dec 14 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 450 * Thu Dec 14 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
451 - Fixed a problem with retrieving Dates and Timestamps which contained a 451 - Fixed a problem with retrieving Dates and Timestamps which contained a
452 year value less than 1000. It would throw an SQLDataException with message: 452 year value less than 1000. It would throw an SQLDataException with message:
453 Could not convert value to a Date. Expected JDBC date escape format 453 Could not convert value to a Date. Expected JDBC date escape format
454 yyyy-[m]m-[d]d. 454 yyyy-[m]m-[d]d.
455 See also: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6468 455 See also: https://github.com/MonetDB/MonetDB/issues/6468
456 456
457 * Mon Oct 23 2017 Sjoerd Mullender <sjoerd@acm.org> 457 * Mon Oct 23 2017 Sjoerd Mullender <sjoerd@acm.org>
458 - Compiled and released new jars: monetdb-jdbc-2.27.jar, monetdb-mcl-1.16.jar 458 - Compiled and released new jars: monetdb-jdbc-2.27.jar, monetdb-mcl-1.16.jar
459 and updated jdbcclient.jar 459 and updated jdbcclient.jar
460 460
491 491
492 * Thu Aug 31 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 492 * Thu Aug 31 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
493 - Corrected PreparedStatement methods setString(int, String) 493 - Corrected PreparedStatement methods setString(int, String)
494 and setObject(int, Object, ...) in case the target parameter 494 and setObject(int, Object, ...) in case the target parameter
495 data type was json or inet or url or uuid. See also 495 data type was json or inet or url or uuid. See also
496 https://www.monetdb.org/bugzilla/show_bug.cgi?id=6382 496 https://github.com/MonetDB/MonetDB/issues/6382
497 497
498 * Thu Aug 24 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 498 * Thu Aug 24 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
499 - Implemented PreparedStatement method setURL(int, URL). 499 - Implemented PreparedStatement method setURL(int, URL).
500 - Implemented PreparedStatement method setNString(int, String). 500 - Implemented PreparedStatement method setNString(int, String).
501 - The MonetDB JDBC driver code and jdbcclient program are now compiled 501 - The MonetDB JDBC driver code and jdbcclient program are now compiled
517 517
518 * Thu Jul 13 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 518 * Thu Jul 13 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
519 - Corrected implementation of PreparedStatement method 519 - Corrected implementation of PreparedStatement method
520 setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) 520 setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength)
521 for the case the targetSqlType is Types.CLOB. 521 for the case the targetSqlType is Types.CLOB.
522 See also: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6349 522 See also: https://github.com/MonetDB/MonetDB/issues/6349
523 523
524 * Thu Mar 30 2017 Sjoerd Mullender <sjoerd@acm.org> 524 * Thu Mar 30 2017 Sjoerd Mullender <sjoerd@acm.org>
525 - Compiled and released new jars: monetdb-jdbc-2.25.jar, monetdb-mcl-1.15.jar 525 - Compiled and released new jars: monetdb-jdbc-2.25.jar, monetdb-mcl-1.15.jar
526 and updated jdbcclient.jar 526 and updated jdbcclient.jar
527 527
528 * Thu Mar 9 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 528 * Thu Mar 9 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
529 - Corrected ResultSetMetaData methods getColumnLabel(int), getColomnName(int), 529 - Corrected ResultSetMetaData methods getColumnLabel(int), getColomnName(int),
530 getTableName(int) and getSchemaName(int) for names which contain special 530 getTableName(int) and getSchemaName(int) for names which contain special
531 characters such as a space, a tab, a comma, a double quote, etc. 531 characters such as a space, a tab, a comma, a double quote, etc.
532 See also: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6183 532 See also: https://github.com/MonetDB/MonetDB/issues/6183
533 533
534 * Wed Dec 21 2016 Sjoerd Mullender <sjoerd@acm.org> 534 * Wed Dec 21 2016 Sjoerd Mullender <sjoerd@acm.org>
535 - Compiled and released new jars: monetdb-jdbc-2.24.jar, monetdb-mcl-1.14.jar 535 - Compiled and released new jars: monetdb-jdbc-2.24.jar, monetdb-mcl-1.14.jar
536 and updated jdbcclient.jar 536 and updated jdbcclient.jar
537 537