[Sqlalchemy-commits] commit/sqlalchemy: 5 new changesets
Brought to you by:
zzzeek
From: Bitbucket <com...@bi...> - 2013-06-16 02:59:54
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a1ceae2ed3b3/ Changeset: a1ceae2ed3b3 Branch: None User: malor Date: 2013-06-15 15:54:50 Summary: Add AUTOCOMMIT isolation level support for psycopg2 One can use this to emit statements, which can not be executed within a transaction (e. g. CREATE DATABASE): from sqlalchemy import create_engine eng = create_engine('postgresql://test:test@localhost/test') conn = eng.connect().execution_options(isolation_level='AUTOCOMMIT') conn.execute('CREATE DATABASE test2;') Fixes issue #2072. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9612e2fbb5b8/ Changeset: 9612e2fbb5b8 Branch: None User: zzzeek Date: 2013-06-16 04:52:00 Summary: Merge pull request #7 from malor/psycopg2_execution_options Add AUTOCOMMIT isolation level support for psycopg2 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d826d99544c5/ Changeset: d826d99544c5 Branch: master User: zzzeek Date: 2013-06-16 04:58:04 Summary: - changelog - docs Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7a3a446d02b2/ Changeset: 7a3a446d02b2 Branch: None User: zzzeek Date: 2013-06-16 04:58:46 Summary: Merge pull request #7 from malor/psycopg2_execution_options Add AUTOCOMMIT isolation level support for psycopg2 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f7e6112d0f97/ Changeset: f7e6112d0f97 Branch: rel_0_8 User: zzzeek Date: 2013-06-16 04:59:09 Summary: - changelog - docs Conflicts: doc/build/changelog/changelog_09.rst Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |