Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 ios 数据库使用 sqlite。最近我提出了“PRAGMA synchronous = OFF and PRAGMA journal_mode = MEMORY”,这将显着提高处理速度。问题是,如何将这些设置应用于 iOS sqlite db?有没有办法将这些查询注入到 sqlite 对象中?任何帮助表示赞赏!提前致谢!
打开数据库后,只需执行一条带有 PRAGMA 值的语句。
如下所示:
sqlite3_exec(dbHandle, "PRAGMA default_cache_size = 200; PRAGMA cache_size = 200;", 0, 0, 0);
从那时起,这将继续有效。