1.8.0
changes since 1.7.2
-
Incompatible change: If multiple queries are executed at once, the first result set is returned rather than the last. For example,
Cursor.execute("SELECT 1; SELECT 2")
used to return 2 but now returns 1. -
Add support for Cursor.nextset to allow retrieving result sets other than the first.
-
Add support for encrypted connections using TLS. This can be enabled using the
tls
parameter ofpymonetdb.connect()
or by using amonetdbs://
URL. -
Add support for
monetdb://
andmonetdbs://
URLs. See MonetDB URLs for details. Themapi:monetdb://
URLs are now deprecated. -
Support for Python 3.6 has been dropped