diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-15 22:58:04 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-15 22:58:04 -0400 |
commit | d826d99544c5c2ec2f7ba1645273fa138b5ec74a (patch) | |
tree | 47261da67ea070dd7da9f25f4c1b9777aa19bc6a /lib/sqlalchemy/dialects/postgresql/psycopg2.py | |
parent | 9612e2fbb5b8e49b58c0a93a6cb154f81545f2db (diff) | |
download | sqlalchemy-d826d99544c5c2ec2f7ba1645273fa138b5ec74a.tar.gz |
- changelog
- docs
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/psycopg2.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/psycopg2.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py index c7f9f0187..7b64f8292 100644 --- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py +++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py @@ -61,7 +61,11 @@ The following DBAPI-specific options are respected when used with * isolation_level - Set the transaction isolation level for the lifespan of a :class:`.Connection` (can only be set on a connection, not a statement or query). This includes the options ``SERIALIZABLE``, ``READ COMMITTED``, - ``READ UNCOMMITTED`` and ``REPEATABLE READ``. + ``READ UNCOMMITTED``, ``REPEATABLE READ``, and ``AUTOCOMMIT``. + + .. versionadded:: 0.8.2 support for AUTOCOMMIT isolation level when using + psycopg2. + * stream_results - Enable or disable usage of server side cursors. If ``None`` or not set, the ``server_side_cursors`` option of the :class:`.Engine` is used. |