Interprocess SQLite Thread Safety (on iOS)
问题 I'm trying to determine if my sqlite access to a database is thread-safe on iOS. I'm writing a non App Store app (or possibly a launch daemon), so Apple's approval isn't an issue. The database in question is the built-in sms.db, so for sure the OS is also accessing this database for reading and writing. I only want to be able to safely read it. I've read this about reading from multiple processes with sqlite: Multiple processes can have the same database open at the same time. Multiple