如何使用SQLite Manager将数据添加到数据库中



我想执行插入查询,当我们调用此 InsUpdateDelData时,查询工作正常,其返回false,则数据未插入

- (IBAction)addToCart:(id)sender {
    AppDelegate *obj = (AppDelegate *)[[UIApplication sharedApplication]delegate] ;
    NSString *insert = @"ahmadyarimran@yahoo.com" ;

    NSString *insertSQL = [NSString stringWithFormat:
    @"INSERT INTO   cart_user(user_id,product_price,product_type,categories_type,product_images,description) values('%@','%@','%@','%@','%@','%@')",insert,handBegsImages.product_price,handBegsImages.product_tagline,handbegCategoriess.handbegid,handBegsImages.main_image,handBegsImages.product_description];
    BOOL abc = [obj InsUpdateDelData:insertSQL];
     NSLog(@"print the value of abc %@=", abc) ;
    if (abc == TRUE) {
      NSLog(@"@ Data was Inserted");
    }
    else{
          [Utility showAlertView:@"Plz try again message" message:@"Again"  viewcontroller:self];
    }
     }

 -(BOOL)InsUpdateDelData:(NSString*)SqlStr
{
    if([SqlStr isEqual:@""])
        return NO;
    BOOL RetrunValue;
    RetrunValue = NO;
    const char *sql = [SqlStr cStringUsingEncoding:NSUTF8StringEncoding];
    sqlite3_stmt *stmt;
    if (sqlite3_prepare_v2(database, sql, -1, &stmt, nil) == SQLITE_OK)
        RetrunValue = YES;
    if(RetrunValue == YES)
    {
        if(sqlite3_step(stmt) != SQLITE_DONE) {
        }
        sqlite3_finalize(stmt);
    }
    return RetrunValue;
}

如果InsUpdateDelData返回NO,则意味着sqlite3_prepare_v2未返回SQLITE_OK。如果您想知道为什么它不返回SQLITE_OK,请在sqlite3_prepare_v2失败后立即记录错误,但是在调用任何其他SQLITE函数之前:

NSLog(@"err=%s", sqlite3_errmsg(database)); 

相关内容

  • 没有找到相关文章