从文档目录中提取数据库

时间:2012-08-04 01:22:20

标签: iphone xcode

我一直在使用以下代码从我的应用程序中的支持文件中提取sqlite数据库。这没问题就行了。

NSFileManager *fileMgr = [NSFileManager defaultManager];
NSString *dbPath = [[[NSBundle mainBundle] resourcePath ]stringByAppendingPathComponent:@"TulsaListBars.sqlite"];
BOOL success = [fileMgr fileExistsAtPath:dbPath];
if(!success)
{
    NSLog(@"Cannot locate database file '%@'.", dbPath);
}else{
    NSLog(@"File Exists: %@", dbPath);
}
if(!(sqlite3_open([dbPath UTF8String], &db) == SQLITE_OK))
{
    NSLog(@"An error has occured: %s", sqlite3_errmsg(db));
}       
const char *sql = "SELECT * FROM Locations WHERE bar = 'yes'";
sqlite3_stmt *sqlStatement;
if(sqlite3_prepare(db, sql, -1, &sqlStatement, NULL) != SQLITE_OK)
{
    NSLog(@"Problem with prepare statement:  %s", sqlite3_errmsg(db));
}

我没有从支持文件中删除数据库并将其放入服务器。我正在使用以下代码将数据库从服务器拉入我的文档目录。我已经验证该文件将转到文档目录,并且对所有表都准确无误。但是,我现在收到错误'准备声明问题:没有这样的表:地点'

NSURL *url = [NSURL URLWithString:@"my web site/TulsaListBars.sqlite"];
NSData *data = [NSData dataWithContentsOfURL:url];
NSString *appDocDir = [NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES) lastObject];
NSString *storePath = [appDocDir stringByAppendingPathComponent:@"TulsaListBars.sqlite"];
[data writeToFile:storePath atomically:TRUE];

这是DB现在在我的文档目录中而不是支持文件的问题吗?

更新:我已重新启动并重置模拟器,现在看来数据库未加载到文档目录中。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

dataWithContentsOfURL正在同步下载数据库文件,可能无法获取整个文件。

使用NSURLConnection将方法更改为异步,并使用委托方法 didReceiveData 附加到NSMutableData对象和 connectionDidFinishLoading 以使用该对象。