summaryrefslogtreecommitdiff
path: root/doc/includes/sqlite3/shared_cache.py
blob: 98adf78cb03150b01ad35ef7b08f6708a1864163 (plain)
1
2
3
4
5
6
from pysqlite2 import dbapi2 as sqlite3

# The shared cache is only available in SQLite versions 3.3.3 or later
# See the SQLite documentaton for details.

sqlite3.enable_shared_cache(True)