以下代码给我一个名为out of sequence 错误的库例程,但我无法解释我的问题在哪里。有任何想法吗 ?
- (BOOL)insertProduct:(Product *)product inOrder:(Order *)order withAmount:(int)amount
{
BOOL ok = NO;
sqlite3_stmt *statement;
const char *dbpath = [_databasePath UTF8String];
if (sqlite3_open(dbpath, &_database) == SQLITE_OK)
{
NSString * insertSQL;
int amount = [self getAmountForProduct:product inOrder:order];
NSLog(@"%i", amount);
if (amount != -1)
{
insertSQL = [NSString stringWithFormat: @"UPDATE ARTICOLIPERORDINE SET quantita = %i WHERE ordine = %i AND articolo = '%@'", amount, order.idOrdine, product.codice];
}
else
{
insertSQL = [NSString stringWithFormat: @"INSERT INTO ARTICOLIPERORDINE (ordine, articolo, quantita) VALUES(%i, '%@', %i)",order.idOrdine, product.codice, 1];
}
NSLog(@"%@", insertSQL);
const char *insert_stmt = [insertSQL UTF8String];
if (sqlite3_prepare_v2(_database, insert_stmt, -1, &statement, NULL) == SQLITE_OK)
{
if (sqlite3_step(statement) == SQLITE_DONE)
{
ok = YES;
}
else
{
ok = NO;
NSLog(@"sqlite3 ERROR %s: %@",sqlite3_errmsg(_database), insertSQL);
}
sqlite3_finalize(statement);
sqlite3_close(_database);
}
else
{
NSLog(@"Error prepare = %s", sqlite3_errmsg(_database));
}
}
return ok;
}
日志打印错误prepare =不按顺序调用的库例程
答案 0 :(得分:1)
我有一种方法。 在此之前,请确保您已完成所有SQL查询,如连接打开,关闭,完成等等。
在将查询实际运行到代码中之前,将该查询执行到任何数据库浏览器中,您将看到查询中缺少的内容。
在我的情况下,我错误地将列名放在查询中并运行代码,我多次得到错误。我仔细检查了所有代码并将查询执行到数据库浏览器中,然后发现了我的错误。