原文地址:http://froebe.net/blog/2015/05/27/error-sqlite-database-is-malformed-solved/
查看原文:http://www.giser.net/?p=1536//检查数据
sqlite> pragma integrity_check;
Error: database disk image is malformed
//把数据dump出来
sqlite> .mode insert
sqlite> .output mydb_export.sql
sqlite> .dump
sqlite> .exit
//备份数据库
mv mydb.db mydb.db.original
//导入数据
sqlite3 mydb.db < mydb_export.sql
//重建索引
sqlite> analyze;
sqlite> .exit
原文链接:https://www.f2er.com/sqlite/198872.html