iPhone开发 - sqlite3_bind_int不能正常工作

时间:2010-09-17 00:27:13

标签: iphone sqlite

我正在尝试使用以下代码在数据库中插入一些数据:

-(void)insertLocationOnDatabase:(LocationType *)aLocation {
    sqlite3_stmt *stmt;
    int location = [aLocation.locationID intValue];
    NSLog(@"Location ID: %i", location);
    const char *sql = "insert into tbl_location values (?,?,?,?)";
    if (sqlite3_prepare_v2(database, sql, -1, &stmt, NULL) == SQLITE_OK) {
        sqlite3_bind_int(stmt, 0, location);
        sqlite3_bind_text(stmt, 1, [aLocation.Description UTF8String], -1, SQLITE_TRANSIENT);
        sqlite3_bind_text(stmt, 2, [aLocation.isActive UTF8String], -1, SQLITE_TRANSIENT);
        sqlite3_bind_text(stmt, 3, [aLocation.sequenceOrder UTF8String], -1, SQLITE_TRANSIENT);
        if (sqlite3_step(stmt) == SQLITE_DONE) {
            NSLog(@"Location %@ inserted on database",aLocation.Description);
        }
        else {
            NSLog(@"Error on step: %i",sqlite3_errcode(database));
            }
    }
    else {
        NSLog(@"Error on prepare: %i",sqlite3_errcode(database));
    }
}

问题在线:

sqlite3_bind_int(stmt, 0, location);

没有这一行并更改sql,代码工作正常,但是当我把这行放回去时,我得到了这个错误:

2010-09-17 10:24:01.032 StockControl[944:207] Error on step: 20

来自sqlite3.h:

#define SQLITE_MISMATCH    20   /* Data type mismatch */

有人知道我的错误在哪里?

此致 克劳迪奥

2 个答案:

答案 0 :(得分:9)

根据binding methods in SQLite的文档,绑定从一个计数,而不是零:

  

第二个参数是索引   要设置的SQL参数。该   最左边的SQL参数的索引为   1。

这可能会导致类型不匹配。

答案 1 :(得分:1)

为什么不使用以下方法?

NSString *sqlCmd = [NSString stringWithFormat:
                   @"insert into tbl_location values (%d,'%@','%@','%@')",
                  location, 
                  aLocation.Description, 
                  aLocation.isActive, 
                  aLocation.sequenceOrder];

const char *sql = [sqlCmd UTF8String];

// ...

我只对大数据使用bind,例如图像文件。