Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 57c1058c34ec9549575c376e175289bab6844c4f authored by Barry Warsaw on 21 August 2008, 02:39:51 UTC
Bumping to 3.0b3
Tip revision: 57c1058
shared_cache.py
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)
back to top