0

我正在使用以下代码为in创建一个sql语句。sqliteios

if(addStmt == nil) {
        const char *sql = "insert into product(product_id, product_name,quantity)     Values(?, ?, ?)";
        if(sqlite3_prepare_v2(database, sql, -1, &addStmt, NULL) != SQLITE_OK)
            NSAssert1(0, @"Error while creating add statement. '%s'", sqlite3_errmsg(database));
    }


sqlite3_bind_int(addStmt, 1,  12 );
sqlite3_bind_text(addStmt, 2, [@"iphone" UTF8String], -1, SQLITE_TRANSIENT);
sqlite3_bind_int(addStmt, 3,  3 );


const char *sqlSt=sqlite3_sql(addStmt);
NSString *str=[NSString stringWithFormat:@"%s",sqlSt];

我明白了

insert into product(product_id, product_name,quantity) Values(?, ?, ?) 作为输出。

我怎样才能得到类似的东西

insert into product(product_id, product_name,quantity) Values(12, "iphone",3)?

4

1 回答 1

0

SQLite 没有任何机制来回读参数的值。

于 2013-10-10T11:46:55.377 回答