Using Linux, I want to compare two SQLite databases that have the same schema. There will be just a few differences.
Is there a tool that would output these differen
One possibility is to use the sqlite3 command line client to export both databases and then diff the output. For example,
sqlite3
sqlite3 first.sqlite .dump >first.dump sqlite3 second.sqlite .dump >second.dump diff first.dump second.dump