I had the Ubuntu repositories of SQLite3 with v3.7.17. But it doesn't have the .save command as newer versions.
To update I did:
sudo apt-get purge sqlite3- Download SQLite 3.8.4.3
- Install it with
./configure && make && sudo make install
But now when I try to run sqlite3 from command line I get:
SQLite header and source version mismatch
2013-05-20 00:56:22 118a3b35693b134d56ebd780123b7fd6f1497668
2014-04-03 16:53:12 a611fa96c4a848614efe899130359c9f6fb889c3
Searching I found two solutions that I've tried without success:
- This answer didn't work because I don't have
sqliteon/usr/bin - This solution didn't work neither, but I did backup to revert those useless changes.
Any idea of how to solve this error?