Home | History | Annotate | Download | only in sqlite3
      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