Skip to content

1.8.0

Compare
Choose a tag to compare
@joerivanruth joerivanruth released this 15 Apr 11:29
· 3 commits to master since this release

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 of pymonetdb.connect() or by using a monetdbs:// URL.

  • Add support for monetdb:// and monetdbs:// URLs. See MonetDB URLs for details. The mapi:monetdb:// URLs are now deprecated.

  • Support for Python 3.6 has been dropped