Commit f5386a94 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Add section in sqlite known issues about isolation and buffered queries.

parent a0a43c0e
...@@ -73,6 +73,15 @@ type therefore behave like the DateTime type. ...@@ -73,6 +73,15 @@ type therefore behave like the DateTime type.
Sqlite Sqlite
------ ------
Buffered Queries and Isolation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Careful if you execute a ``SELECT`` query and do not iterate over the
statements results directly. ``UPDATE`` statements executed before iteration
affect only the rows that have not been buffered into PHP memory yet. This
breaks the SERIALIZABLE transction isolation property that SQLite supposedly
has.
DateTime DateTime
~~~~~~~~~~ ~~~~~~~~~~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment