ios如何使用 Xcode,读取和写入存在的数据库文件

 我来答
八维教育
2016-11-04 · 学高端技术就来八维教育
八维教育
北京八维教育是位于首都中关村上地信息产业园区的一所民办非学历高等教育机构。课程设置以市场需求为导向、以岗位要求为标准、为企业量身打造符合企业和市场需求的专业型人才。
向TA提问
展开全部
通过将 sqlite db 文件添加到您的支持文件组在 Xcode 中,只添加的文件到应用程序的包以便在生成过程中它获取与所有其他资源打包。因为应用程序不能写入到其捆绑,你必须 sqlite 数据库从复制文件捆绑到一个可写的位置例如
#define FORCE_RECOPY_DB NO

- (void)copyDatabaseIfNeeded {
NSFileManager *fm = [[NSFileManager alloc] init];
NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *destinationPath = [documentsPath stringByAppendingPathComponent:@"pte.sqlite"];

void (^copyDb)(void) = ^(void){
NSString *sourcePath = [[NSBundle mainBundle] pathForResource:@"pte" ofType:@"sqlite"];
NSAssert1(sourcePath, @"source db does not exist at path %@",sourcePath);

NSError *copyError = nil;
if( ![fm copyItemAtPath:sourcePath toPath:destinationPath error:©Error] ) {
DDLogError(@"ERROR | db could not be copied: %@", copyError);
}
};
if( FORCE_RECOPY_DB && [fm fileExistsAtPath:destinationPath] ) {
[fm removeItemAtPath:destinationPath error:NULL];
copyDb();
}
else if( ![fm fileExistsAtPath:destinationPath] ) {
DDLogInfo(@"INFO | db file needs copying");
copyDb();
}
}
现在当您想要打开的数据库,使用中的文件路径的位置。
请注意你就不能来检查您的项目中的 sqlite db 文件和期望找到写入从您的代码的更改。(因为您的代码将现在工作与复制的 sqlite 文件。)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式