I have a really old, dusty SQLite 2 database lying around on my hard disk that I'd like to search around in.
So far, I've tried opening it with tools such as sqliteman, sqlitebrowser, and simply trying to open it with sqlite3
in Python, but to no avail.
All tools now seem to exclusively support SQLite 3.
Is there a way I can open this old SQLite 2 database in Python?
By the way, I'm pretty sure it's a SQLite database, looking around in the binary contents:
user@host:~ $ head -1 old.db | cut -c 1-48
** This file contains an SQLite 2.1 database **