为什么我的 SQLite 数据库用单引号膨胀到 12MB(从 280KB)?

发布于 2024-11-09 13:57:38 字数 252 浏览 0 评论 0原文

我正在使用 SQLiteManager。我有一个 280KB 的数据库,一天之内就膨胀到超过 12MB。我没有做任何不典型的事情。整个数据库中我仍然只有大约 4-6 个光结果。

当我使用文本编辑器打开数据库文件时,我看到一页又一页的单引号 (')。

另外,SQLiteManager 会时不时地将数十个单引号直接注入到我拥有的 TinyText 属性中。这在 SQLiteManager 的 Web UI 上可见。

对发生的事情有什么想法吗?

I'm using SQLiteManager. I had a 280KB database that bloated to over 12MB in just one day. I wasn't doing anything atypical. I still only have about 4-6 light results in the entire database.

When I open up the database file with a text editor, I see pages upon pages of single quotes (').

Also, SQLiteManager injects dozens of single quotes directly into the TinyText attributes that I have every now and then. This is visible on SQLiteManager's Web UI.

Any ideas as to what's going on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眼睛不忧郁 2024-11-16 13:57:38

无论 SQLiteManager 在做什么,你能让它运行 VACUUM 吗?如果这释放了空间,您就可以让它定期运行;有关详细信息,请参阅此链接:

http://www.sqlite.org/lang_vacuum.html

另外,您可以将 auto_vacuum 设置为 FULL:

http://www.sqlite.org/pragma.html#pragma_auto_vacuum

Whatever SQLiteManager is doing, can you have it run VACUUM? If that frees the space, you can then have it run periodically; see this link for more information:

http://www.sqlite.org/lang_vacuum.html

Also, you can set auto_vacuum to FULL:

http://www.sqlite.org/pragma.html#pragma_auto_vacuum

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文