Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: d1dd2e307c92184423d3602f663054cdc49c62bd authored by Barry Warsaw on 18 March 2010, 22:14:36 UTC
Bumping to 2.6.5 final.
Tip revision: d1dd2e3
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