gpt4 book ai didi

sqlite - 如何模拟损坏的 SQLite 数据库

转载 作者:行者123 更新时间:2023-12-03 16:21:15 31 4
gpt4 key购买 nike

我的应用程序中的启动例程的一部分使用 PRAGMA integrity_check; 验证其 SQLite 数据库。 API。我正在寻找一种合法地破坏 SQLite 数据库的方法,以便这种“完整性检查”会失败。

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

有任何想法吗?

最佳答案

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

关于sqlite - 如何模拟损坏的 SQLite 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31924510/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com