0

我正在尝试将文本数据插入到 iOS 中的 sqlite3 数据库中。

我编写了以下代码将数据保存到 sqlite3 数据库中。

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

        BOOL success = [fileMgr fileExistsAtPath:dbPath];

        if(!success)
        {
            NSLog(@"File Not Found");
        }

        if((!sqlite3_open([dbPath UTF8String], &database) == SQLITE_OK))
        {
            NSLog(@"Error in MyInfo");
        }

        const char *sql = "Insert into MyDB (name,address,email) values('%@','%@','%@')";

        sqlite3_bind_text(sqlStmt, 0, [Name UTF8String], -1, SQLITE_TRANSIENT);
        sqlite3_bind_text(sqlStmt, 1, [Address UTF8String], -1, SQLITE_TRANSIENT);
        sqlite3_bind_text(sqlStmt, 2, [Email UTF8String], -1, SQLITE_TRANSIENT);

        if(sqlite3_prepare(database, sql, -1, &sqlStmt, NULL))
        {
            NSLog(@"Error in Loading database");
        }

        if (sqlite3_exec(database, sql, NULL, NULL, NULL) == SQLITE_OK) 
        {
            return sqlite3_last_insert_rowid(database);
        }


        if(sqlite3_step(sqlStmt) == SQLITE_ROW)
        {
            NSLog(@"ERROR");
        }
    }

    @catch (NSException *exception) 
    {
        NSLog(@"%@",exception);
    }

    @finally 
    {
        sqlite3_finalize(sqlStmt);
        sqlite3_close(database);
    }

根据我上面的代码,我返回最后一个插入 ROWID 来检查是否插入。

在 View 中保存文本数据后,ROWID 增加了。

但是,当我使用 FireFox sqlite3 工具检查我的数据库时,我没有插入任何数据。

所以我停止运行并重新运行我的应用程序并再次添加数据。

最后插入的ROWID与旧计数相同。即使增加一个也不增加。

我想知道为什么它没有将任何数据保存到 sqlite 数据库中。

我的代码有问题吗?

请帮我。

提前致谢。

4

1 回答 1

1
NSString *dbPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"MgDB.sqlite"];

您不能写入应用程序包中包含的文件。而是在 Documents 目录中创建(或复制)数据库。

请参阅QA1662

于 2012-07-05T13:21:06.513 回答