我的更新声明无效

时间:2012-03-19 08:46:30

标签: objective-c ios sqlite sqlitemanager

我尝试更新表格中的条目:

NSFileManager *fileMgr=[NSFileManager defaultManager];
        NSString *dbPath=[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"quizDB.sqlite"];

        if ([fileMgr fileExistsAtPath:dbPath]) {
            NSLog(@"DB does exist!");//displayed
        }
        const char *dbpath = [dbPath UTF8String];
        sqlite3_stmt    *updateStmt;
if (sqlite3_open(dbpath, &contactDB) == SQLITE_OK)
        {
            NSLog(@"%i",id_quiz);//displayed, in a test case it display 1 which is a quiz ID in the table
            NSString *querySql=[NSString stringWithFormat:@"Update quiz set etat=1 where id=\"%i\"",id_quiz]; 
            const char*sql=[querySql UTF8String];

            sqlite3_prepare_v2(contactDB, sql, -1, &updateStmt, NULL);

                if(SQLITE_DONE != sqlite3_step(updateStmt))
                { 
                    NSAssert1(0, @"Error while updating. '%s'", sqlite3_errmsg(contactDB));
                }
                else{ 

                    sqlite3_reset(updateStmt);
                    NSLog(@"Update done successfully!");//this is also displayed, i guess everything is ok then and the entry is updated
                }

            sqlite3_finalize(updateStmt);           
            sqlite3_close(contactDB);
        }

在日志中,我收到了消息:Update done successfully!所以我假设一切都是,但是当我在Mozilla Firefox的SQLite Manager中检查数据库时,该条目没有更新。我错过了什么吗? thanx求助

1 个答案:

答案 0 :(得分:2)

首先将数据库从资源复制到文档目录:

- (void) checkAndCreateDatabase
{
NSString *database_Name =@"quizDB.sqlite"
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
NSString *database_Path = [documentsDir stringByAppendingPathComponent:database_Name];

NSFileManager *fileManager = [NSFileManager defaultManager];

if(![fileManager fileExistsAtPath:database_Path])
{
    NSString *databasePathFromApp = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:database_Name];

    [fileManager removeItemAtPath:database_Path error:nil];
    [fileManager copyItemAtPath:databasePathFromApp toPath:database_Path error:nil];
}
else
{
    NSString *databasePathFromApp = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:database_Name];
    [fileManager copyItemAtPath:databasePathFromApp toPath:database_Path error:nil];
}

 }

并在您更新数据库后:

 - (void) UpdateDatabase
{       
sqlite3 *contactDB;
sqlite3_stmt *updateStmt;
NSString *database_Name =@"quizDB.sqlite"

NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
NSString *dbpath = [documentsDir stringByAppendingPathComponent:database_Name];

if(sqlite3_open([dbpath UTF8String], &contactDB) == SQLITE_OK)
  {
  NSString *querySql=[NSString stringWithFormat:@"Update quiz set etat=1 where id=\"%i\"",id_quiz];
  const char*sql=[querySql UTF8String];
    if(sqlite3_prepare_v2(contactDB,sql, -1, &updateStmt, NULL) == SQLITE_OK)
    {
        if(SQLITE_DONE != sqlite3_step(updateStmt))
            {
                    NSAssert1(0, @"Error while updating. '%s'", sqlite3_errmsg(contactDB));
            }
            else{
                sqlite3_reset(updateStmt);
                NSLog(@"Update done successfully!");
                }
      }



    sqlite3_finalize(updateStmt);
}
sqlite3_close(contactDB);

 }

并检查您的数据库哪个保存在documentdir而不是资源中  

相关问题