• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 import sqlite3
2 
3 # The shared cache is only available in SQLite versions 3.3.3 or later
4 # See the SQLite documentation for details.
5 
6 sqlite3.enable_shared_cache(True)
7