[ios]关于用FMDB 操作数据库 删除 tableView 后刷新

时间:2022-05-30 22:13:13

刚了解使用fmdb,从数据库获取数据 绑定到一个可变数组classNameItems

 //ClassList表取得数据

    FMResultSet *classInfo=[db executeQuery:@"SELECT ClassName FROM ClassList"];

    while ([classInfo next]) {

        [self.classNameItems addObject:[classInfo stringForColumn:@"ClassName"]];

    }

然后删除

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

  .....

//创建数据库

        FMDatabase *db = [FMDatabase databaseWithPath:dbPath];

        if (![db open]) {

            NSLog(@"Could not open db.");

        }

        [db executeUpdate:@"DELETE FROM ClassList WHERE ClassName = ?",[self.classNameItemsobjectAtIndex:indexPath.row]];        

        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];

        [self.classNameItems removeObjectAtIndex:indexPath.row];

       [self.tableViewList reloadData];

 }

 

不知道FMDB中有没有可以返回一个数组的方法,可以不用在循环赋值了。。。求教育。。。。谢谢