ERROR: SQLite database is malformed 的解决方法

前端之家收集整理的这篇文章主要介绍了ERROR: SQLite database is malformed 的解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
原文地址:http://froebe.net/blog/2015/05/27/error-sqlite-database-is-malformed-solved/
@H_403_3@@H_403_3@查看原文: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

猜你在找的Sqlite相关文章