如何模拟损坏的 SQLite 数据库

问题描述 投票:0回答:1

我的应用程序中的部分启动例程使用

PRAGMA integrity_check;
API 验证其 SQLite 数据库。我正在寻找一种合法地破坏 SQLite 数据库的方法,以便此“完整性检查”失败。

我尝试在文本编辑器中弄乱数据库文件,但这会导致打开数据库时捕获的一种损坏,比我调用“完整性检查”早得多。

有什么想法吗?

sqlite system.data.sqlite
1个回答
4
投票

PRAGMA writable_schema 允许您更改 SQLite 背后的数据库模式,从而违反约束:

$ sqlite3 test.db
> CREATE TABLE t(x);
> CREATE INDEX tx ON t(x);
> INSERT INTO t VALUES (1), (1);
> .dbconfig defensive off
> PRAGMA writable_schema = 1;
> UPDATE sqlite_master
>   SET sql = 'CREATE UNIQUE INDEX tx ON t(x)'
>   WHERE type = 'index' AND name = 'tx';
> PRAGMA writable_schema = reset;
> PRAGMA integrity_check;
non-unique entry in index tx
© www.soinside.com 2019 - 2024. All rights reserved.