Files
sqlalchemy/test
Roman Podolyaka a1ceae2ed3 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.
2013-06-15 16:54:50 +03:00
..
2013-05-26 19:47:13 -04:00
2013-06-08 18:41:59 -04:00
2013-06-04 21:38:56 -04:00