如何模拟损坏的 SQLite 数据库
How to simulate a corrupt SQLite database
我的应用程序中的部分启动例程使用 PRAGMA integrity_check;
API 验证其 SQLite 数据库。我正在寻找一种合法破坏 SQLite 数据库的方法,这样 "integrity check" 就会失败。
我试过在文本编辑器中修改数据库文件,但这会导致在打开数据库时捕获到一种损坏,这比我调用 "integrity check".[=11= 早得多]
有什么想法吗?
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
我的应用程序中的部分启动例程使用 PRAGMA integrity_check;
API 验证其 SQLite 数据库。我正在寻找一种合法破坏 SQLite 数据库的方法,这样 "integrity check" 就会失败。
我试过在文本编辑器中修改数据库文件,但这会导致在打开数据库时捕获到一种损坏,这比我调用 "integrity check".[=11= 早得多]
有什么想法吗?
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