ios如何使用 Xcode,读取和写入存在的数据库文件
1个回答
2016-11-04 · 学高端技术就来八维教育
关注
展开全部
通过将 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 文件。)
#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 文件。)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询