I have the sms.db sqlite database that i acquired from an iphone(it was not encrypted). I m trying to use the sqlite command line tool(version 3.7.12) to get look at what is inside the database.
For that I do
sqlite3 sms.db
Which takes me to the sqlite prompt after which I try to look at the tables(or execute any other command on the db) by doing
.tables
On doing this I get this error
Error: file is encrypted or is not a database
I m pretty sure its not encrypted and that it is a db file. Am I doing something wrong? Please help!