One possible way to try to recover your database is to install the commad line sqlite tool and run it like this
sqlite3 metadata.db < .dump > dump.sql
del metadata.db
sqlite3 metadata.db < dump.sql
This will try to dump your database to SQL statements and recover recreate it from that
|