summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/sqlite/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-12-06 12:41:01 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2011-12-06 12:41:01 -0500
commitbd4c1dd38c503df467e9297dfc6dcfa35b9df9c3 (patch)
treeaf9eb805c7eb992240b21a604b00ac1eac4f8764 /lib/sqlalchemy/dialects/sqlite/base.py
parentc929e70e107caa75dc6988dddb59b57b2f4eeff8 (diff)
downloadsqlalchemy-bd4c1dd38c503df467e9297dfc6dcfa35b9df9c3.tar.gz
add BEGIN workaround to pysqlite docs, [ticket:2219]
Diffstat (limited to 'lib/sqlalchemy/dialects/sqlite/base.py')
-rw-r--r--lib/sqlalchemy/dialects/sqlite/base.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py
index f0c9a0cca..9d5e070b3 100644
--- a/lib/sqlalchemy/dialects/sqlite/base.py
+++ b/lib/sqlalchemy/dialects/sqlite/base.py
@@ -46,10 +46,12 @@ to the Table construct::
Transaction Isolation Level
---------------------------
-:func:`create_engine` accepts an ``isolation_level`` parameter which results in
+:func:`.create_engine` accepts an ``isolation_level`` parameter which results in
the command ``PRAGMA read_uncommitted <level>`` being invoked for every new
connection. Valid values for this parameter are ``SERIALIZABLE`` and
``READ UNCOMMITTED`` corresponding to a value of 0 and 1, respectively.
+See the section :ref:`pysqlite_serializable` for an important workaround
+when using serializable isolation with Pysqlite.
"""