在 iPhone 上的 sqlite3 中执行 Vacuum 命令时出现问题
我发现这个片段用于执行 sqlite3 数据库的真空,但它不起作用。
谁能告诉我有什么问题吗?
sqlite3_exec(dataBase, "VACUUM;", 0, 0);
谢谢...
I found this snippet for executing a vacuum of an sqlite3 db but it doesn't work.
can anyone tell me what is wrong with it.
sqlite3_exec(dataBase, "VACUUM;", 0, 0);
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,这是使真空命令起作用的解决方案。
这使得命令可以工作,但是应用程序在运行时被锁定在数据库之外。
ok here's the solution to make the vacuum command work.
that makes the command work however the app is locked out of the database while it runs.