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 应用程序中,在声明中
NSDictionary *x = [NSPersistentStoreCoordinator metadataForPersistentStoreOfType:NSSQLiteStoreType URL:<url> error:&error];
我收到以下错误,x 为零:
“SQLite 错误代码:3850,'不是错误'errno:9”
这是什么意思?
它可能是
#define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/
(来源)