blob: 30e71c935ff62eef8231283317551f5de51b278d [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001import sqlite3
2
3# The shared cache is only available in SQLite versions 3.3.3 or later
Ezio Melotti13925002011-03-16 11:05:33 +02004# See the SQLite documentation for details.
Georg Brandl116aa622007-08-15 14:28:22 +00005
6sqlite3.enable_shared_cache(True)