From 31f96c27a5fea302358ba580313a2f742c12b83d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 15 Mar 2016 17:11:08 -0400 Subject: - changelog and docs for #3332, fixes #3332 - make docs for isolation level more consistent between postgresql and mysql - move mysql autocommit tests --- doc/build/changelog/migration_11.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'doc/build/changelog/migration_11.rst') diff --git a/doc/build/changelog/migration_11.rst b/doc/build/changelog/migration_11.rst index cbf213d44..3f40c7278 100644 --- a/doc/build/changelog/migration_11.rst +++ b/doc/build/changelog/migration_11.rst @@ -1861,6 +1861,25 @@ common to both MySQL and Postgresql. :ticket:`3547` +.. _change_3332: + +Added support for AUTOCOMMIT "isolation level" +---------------------------------------------- + +The MySQL dialect now accepts the value "AUTOCOMMIT" for the +:paramref:`.create_engine.isolation_level` and +:paramref:`.Connection.execution_options.isolation_level` +parameters:: + + connection = engine.connect() + connection = connection.execution_options( + isolation_level="AUTOCOMMIT" + ) + +The isolation level makes use of the various "autocommit" attributes +provided by most MySQL DBAPIs. + +:ticket:`3332` .. _change_mysql_3216: -- cgit v1.2.1