标签: ios sqlite core-data
在我的IOS应用中,声明
NSDictionary *x = [NSPersistentStoreCoordinator metadataForPersistentStoreOfType:NSSQLiteStoreType URL:<url> error:&error];
我收到以下错误,x为零:
“SQLite错误代码:3850,'不是错误'错误号:9”
这是什么意思?
答案 0 :(得分:0)
可能是
#define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/
(Source)