summaryrefslogtreecommitdiffstats
path: root/Doc/includes/sqlite3/shared_cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/includes/sqlite3/shared_cache.py')
-rw-r--r--Doc/includes/sqlite3/shared_cache.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/includes/sqlite3/shared_cache.py b/Doc/includes/sqlite3/shared_cache.py
new file mode 100644
index 0000000..bf1d7b4
--- /dev/null
+++ b/Doc/includes/sqlite3/shared_cache.py
@@ -0,0 +1,6 @@
+import 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)