码迷,mamicode.com
首页 > 移动开发 > 详细

IOS -- SQLite数据库判断表是否存在

时间:2016-11-16 11:29:29      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:bool   存在   style   ret   resultset   判断   query   ase   count   

/**
 判断一张表是否已经存在
 @param tablename 表名
 */
- (BOOL)isExistTable:(NSString *)tablename{
    if ([_dataBase open]) {
        FMResultSet *rs = [_dataBase executeQuery:@"select count(*) as ‘count‘ from sqlite_master where type =‘table‘ and name = ?", tablename];
        while ([rs next]){
            NSInteger count = [rs intForColumn:@"count"];
            if (0 == count){
                return NO;
            }
            else{
                return YES;
            }
        }
        return NO;
    }
    return NO;
}

 



IOS -- SQLite数据库判断表是否存在

标签:bool   存在   style   ret   resultset   判断   query   ase   count   

原文地址:http://www.cnblogs.com/Crazy-ZY/p/6068688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!