0

出于测试目的,我一直在我的应用程序的支持文件中删除我的 sqlite DB。我目前正在尝试将其移至 URL,因此我将能够在不更新应用程序的情况下更新数据库。我正在使用以下代码,它似乎正在工作,因为它将文件下载到文档目录。问题是我已经从支持文件中删除了旧数据库,并且它的数据仍在被提取。我在我的数据库中进行了更改,所以我会知道其中的区别。

我需要清除一些记忆吗?如果不是我在这里想念什么。

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSString *file = [NSString stringWithFormat:@"http://www.myurl/TulsaListBars.sqlite"];
    NSURL *fileURL = [NSURL URLWithString:file];

    NSURLRequest *req = [NSURLRequest requestWithURL:fileURL];
    NSURLConnection *conn = [NSURLConnection connectionWithRequest:req delegate:self];

    fileData = [NSMutableData data];
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    [fileData setLength:0];
    totalFileSize = [NSNumber numberWithLongLong:[response expectedContentLength]];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    [fileData appendData:data];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    NSArray *dirArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,    NSUserDomainMask, YES);
    NSLog(@"%@", [dirArray objectAtIndex:0]);

    NSString *path = [NSString stringWithFormat:@"%@/TulsaListBar.sqlite", [dirArray objectAtIndex:0]];

    if ([fileData writeToFile:path options:NSAtomicWrite error:nil] == NO) {
        NSLog(@"writeToFile error");
    }
    else {
        NSLog(@"Written!");
    }
}

以下代码是我阅读数据库的方式。

-(NSMutableArray *) barList{
    thebars = [[NSMutableArray alloc] init];
    @try {
        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));
        }else{

            while (sqlite3_step(sqlStatement)==SQLITE_ROW) {
                Bar * bar = [[Bar alloc] init];
                bar.barName = [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement,1)];
                bar.barAddress = [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement,2)];

                etc.....
4

2 回答 2

0

数据库的旧副本仍在文档目录中。如果你写入文件并且文件已经存在,writeToFile:应该覆盖它,但当然它必须具有相同的名称/路径。

解决方案:只需从模拟器/设备中删除应用程序并再次运行您的应用程序。此外,请确保在打开数据库时处理正确的路径。

于 2012-08-05T19:17:29.520 回答
0

请记住,您不能写入应用程序的包,并且文档文件夹与该包是分开的。您的代码示例没有显示数据库是如何打开的,因此无论下载的文件如何,它都有可能是从捆绑包中打开的。更好的方法是将数据库打开代码放入 didFinishLoading 委托方法中,并在那里使用下载文件的路径。

于 2012-08-05T20:22:33.437 回答