当前位置:  开发笔记 > 前端 > 正文

SQLite 3 C API事务

如何解决《SQLite3CAPI事务》经验,为你挑选了1个好方法。

我正在使用SQLite3进行iPhone开发,我试图将一些插入语句包装到一个事务中.目前我有以下代码正常工作但是在阅读了另一个关于SO的问题后,我意识到最好将这些问题放在一个事务中而不是每个事务中.我找不到C API调用来开始和提交事务.有些代码是在Objective-C中,但我认为这与问题无关.

- (void)saveAnimals {
    //Insert all the animals into the zoo database
    int i;

    const char *sql = "insert into Animal(Zoo_ID, Animal_Num, Animal_Text) Values(?, ?, ?)";
    for (i = 0; i < ([[self animalArray] count] - 1); i++) {

        if(addStmt == nil) {
            if(sqlite3_prepare_v2(database, sql, -1, &addStmt, NULL) != SQLITE_OK)
                NSAssert1(0, @"Error while creating add statement. '%s'", sqlite3_errmsg(database));
        }
        int animalNum = [[[self animalArray] objectAtIndex:i] animal_Number];
        NSString *animalText = [[NSString alloc] initWithString:[[[self animalArray] objectAtIndex:i] animal_Text]];
        sqlite3_bind_int(addStmt, 1, zoo_ID);   
        sqlite3_bind_int(addStmt, 2, animalNum);    
        sqlite3_bind_text(addStmt, 3, [animalText UTF8String], -1, SQLITE_TRANSIENT);
        [animalText release];
        if(SQLITE_DONE != sqlite3_step(addStmt)) {
            NSAssert1(0, @"Error while inserting data. '%s'", sqlite3_errmsg(database));
        }

        //Reset the add statement.
        sqlite3_reset(addStmt);     
    }
}

我认为需要做的是将sqlite3_prepare_v2命令从for循环中取出,启动事务,遍历for循环,提交事务.但是,我不确定"启动事务"和"提交事务"的调用是什么.我还会使用sqlite3_step吗?谢谢你的帮助.



1> Doug Currie..:

用以下内容开始交易: sqlite3_exec(db, "BEGIN", 0, 0, 0);

提交交易: sqlite3_exec(db, "COMMIT", 0, 0, 0);


你会认为会有一个更干净的API ...为什么它们只是包含一个sqlite3_exec_trans_begin(db)调用...
@afriza,BEGIN是延期操作.延迟意味着在首次访问数据库之前,不会在数据库上获取锁.因此,对于延迟事务,BEGIN语句本身对文件系统不执行任何操作.在第一次读取或写入操作之前不会获取锁定.有关尝试获取锁定的BEGIN的其他变体,请参见http://www.sqlite.org/lang_transaction.html.
推荐阅读
虎仔球妈_459
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有