我的应用程序中的部分启动例程使用PRAGMA integrity_check;
API验证其SQLite数据库。我正在寻找合法破坏SQLite数据库的方法,以便这种“完整性检查”失败。
我已尝试在文本编辑器中弄乱数据库文件,但这会导致打开数据库时出现的一种损坏,比我对“完整性检查”的调用要早得多。
有什么想法吗?
答案 0 :(得分:3)
PRAGMA writable_schema允许您更改SQLite后面的数据库架构,从而违反约束:
$ sqlite3 test.db
> CREATE TABLE t(x);
> CREATE INDEX tx ON t(x);
> INSERT INTO t VALUES (1), (1);
> PRAGMA writable_schema = 1;
> UPDATE sqlite_master
> SET sql = 'CREATE UNIQUE INDEX tx ON t(x)'
> WHERE type = 'index' AND name = 'tx';
> .quit
$ sqlite3 test.db # reload
> PRAGMA integrity_check;
non-unique entry in index tx