美文网首页
FMDB获取数据库中数据的条数

FMDB获取数据库中数据的条数

作者: 无BUG不成魔 | 来源:发表于2016-09-21 16:20 被阅读0次

    前几天做项目,需要获取数据库中本地收藏文章的数量,然后百度到方法,记录一下。
    <pre>
    +(NSInteger)getLocalCasesCountByTable{

    if ([[LPDataBase sharedDatabase].database open]) {
        LPUser * user =[KBCoordinatingContext sharedInstance].userInfo;
    
        NSString *selectSQL = [NSString stringWithFormat:@"SELECT Count(*) FROM %@ where UserID = '%@' and Draft = '1'",KTopicList,user.UserID];
        
       return  [[LPDataBase sharedDatabase].database intForQuery:selectSQL];
    }
    return 0;
    

    }
    </pre>
    [NSString stringWithFormat:@"SELECT Count(*) FROM %@ where UserID = '%@' and Draft = '1'",KTopicList,user.UserID]

    KTopicList 表名

    user.UserID 参数

    相关文章

      网友评论

          本文标题:FMDB获取数据库中数据的条数

          本文链接:https://www.haomeiwen.com/subject/rcuaettx.html