如何以编程方式在iOS的sqlite3表中插入几行?这是我当前方法的代码片段:

sqlite3 *database;

if(sqlite3_open([filePath UTF8String], &database) == SQLITE_OK) {
    const char *sqlStatement = "insert into TestTable (id, colorId) VALUES (?, ?)";
    sqlite3_stmt *compiledStatement;

    if(sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL) == SQLITE_OK)
    {
        for (int i = 0; i < colorsArray.count; i++) {
            sqlite3_bind_int(compiledStatement, 1, elementId);
            long element = [[colorsArray objectAtIndex:i] longValue];
            sqlite3_bind_int64(compiledStatement, 2, element);
        }
    }

    if(sqlite3_step(compiledStatement) == SQLITE_DONE) {
        sqlite3_finalize(compiledStatement);
    }
    else {
        NSLog(@"%d",sqlite3_step(compiledStatement));
    }
}
sqlite3_close(database);

这样,我只插入第一行,如何告诉sqlite我希望每个“for”循环都是行插入?我找不到任何这样的例子...

谢谢!

最佳答案

您必须运行以下语句:

sqlite3_step(compiledStatement) == SQLITE_DONE

每次插入之后,在您的代码中,我看到您最后只运行一次。

07-26 01:03