iOS - FMDB 封裝(數(shù)據(jù)庫的存入||讀取||刪除||查詢||修改...)

前言:

在項目中會經(jīng)常遇到數(shù)據(jù)寫入本地,讀取等等操作,這樣的操作會經(jīng)常用到,所以就封裝了一個類方法

前提:

是要用cocoapods下載FMDB框架,我用到是模型來存儲數(shù)據(jù)的,大家也可以用字典來存儲,一樣的道理,封裝類方法如下:

  • .h文件如下:
#import <Foundation/Foundation.h>
#import "FMDB.h"

@class TestModel;
@class DetectModel;
@interface FmdbTooler : NSObject

+(FmdbTooler*)sharedInstance;
- (void)openDatabaseWithUserName:(NSString*)userName;

// 往數(shù)據(jù)庫寫入數(shù)據(jù)ut_detect  add by bob
-(BOOL)addUt_detectLogsave:(DetectModel *)model;
// 獲取ut_detect表下面的數(shù)據(jù) add by bob
- (NSMutableArray *)getUt_detectDataDetial;
// 根據(jù)detectingdate刪除某個咨詢對話 add by bob
-(BOOL)deleteUt_detectOfVisitid:(NSString *)detectingdate;
//更新detectingdate對應的咨詢對話信息UPDATE 表名稱 SET 列名稱 = 新值 WHERE 列名稱 = 某值
- (void)updateUt_detectOfVisitid:(NSString *)detectingdate logsave:(DetectModel *)model;
// 根據(jù)detectingdate判斷數(shù)據(jù)是否存在
-(BOOL)isExitUt_detectOfDetectingdate:(NSString *)detectingdate;

// ut_testing表
// 往數(shù)據(jù)庫寫入數(shù)據(jù)  add by bob
-(BOOL)addUt_testingLogsave:(TestModel *)model;
// 獲取ut_testing表下面的數(shù)據(jù) add by bob
- (NSMutableArray *)getUt_testingDataDetial;
// 根據(jù)testingid刪除某個咨詢對話 add by bob
-(BOOL)deleteUt_testingOfVisitid:(NSInteger)testingid;

@end
  • .m實現(xiàn)方法:
#import "FmdbTooler.h"
#import <CommonCrypto/CommonDigest.h>
#import "DetectModel.h"
#import "TestModel.h"

@interface FmdbTooler()

@property (nonatomic, strong) FMDatabase *dataBase;

@end

@implementation FmdbTooler

+(FmdbTooler*)sharedInstance{
    static FmdbTooler* dbmanager;
    static dispatch_once_t dbmanageronce;
    dispatch_once(&dbmanageronce, ^{
        dbmanager = [[FmdbTooler alloc] init];
    });
    return dbmanager;
}

- (void)openDatabaseWithUserName:(NSString*)userName {
    if (userName.length==0) {
        return;
    }
    
    //Documents:
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    
    //username md5
    const char *cStr = [userName UTF8String];
    unsigned char result[16];
    CC_MD5(cStr, (CC_LONG)strlen(cStr), result);
    NSString* MD5 =  [NSString stringWithFormat:@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",result[0], result[1], result[2], result[3], result[4], result[5], result[6], result[7],result[8], result[9], result[10], result[11],result[12], result[13], result[14], result[15]];
    
    //數(shù)據(jù)庫文件夾
    NSString * documentsDirectory = [[paths objectAtIndex:0] stringByAppendingPathComponent:MD5];
    NSFileManager *fileManager = [NSFileManager defaultManager];
    BOOL isDir = FALSE;
    BOOL isDirExist = [fileManager fileExistsAtPath:documentsDirectory isDirectory:&isDir];
    if(!(isDirExist && isDir)) {
        BOOL bCreateDir = [fileManager createDirectoryAtPath:documentsDirectory withIntermediateDirectories:YES attributes:nil error:nil];
        if(!bCreateDir) {
            NSLog(@"Create Database Directory Failed.");
        }
        NSLog(@"%@", documentsDirectory);
    }
    
    NSString *dbPath = [documentsDirectory stringByAppendingPathComponent:@"ut_database.db"];
    if (self.dataBase) {
        [self.dataBase close];
        self.dataBase = nil;
    }
    
    self.dataBase = [FMDatabase databaseWithPath:dbPath];
    [self.dataBase open];
    
    
    // 新建ut_detect數(shù)據(jù)表
    [self ut_detectTableCreate];
    
    // 新建ut_testing數(shù)據(jù)表
    [self ut_testingTableCreate];
}

// 判斷指定表是否存在
- (BOOL)checkTableExist:(NSString *)tableName {
    BOOL result = NO;
    NSString* lowtableName = [tableName lowercaseString];
    
    FMResultSet *rs = [self.dataBase executeQuery:@"SELECT [sql] FROM sqlite_master WHERE [type] = 'table' AND lower(name) = ?", lowtableName];
    result = [rs next];
    [rs close];
    
    return result;
}

// 創(chuàng)建表
- (void) createTable:(NSString*)tableName sql:(NSString *)createSql {
    
    BOOL isExist = [self.dataBase tableExists:tableName];
    if (!isExist) {
        [self.dataBase executeUpdate:createSql];
    }
}
- (BOOL)runSql:(NSString*)sql {
    return [self.dataBase executeUpdate:sql];
}
- (int)getCountWithSql:(NSString*)sql {
    
    int count = 0;
    FMResultSet *rs = [self.dataBase executeQuery:sql];
    if ([rs next]) {
        count = [rs intForColumnIndex:0];
    }
    [rs close];
    return count;
}
// 創(chuàng)建 ut_detect 表
- (void)ut_detectTableCreate{
    [self createTable:@"ut_detect" sql:@"CREATE table ut_detect (detectingdate varchar(64) PRIMARY KEY, deviceid varchar(64), indexuom varchar(64),pvalue varchar(64),frequency varchar(64),minvalue varchar(64),maxvalue varchar(64))"];
}
// 往數(shù)據(jù)庫寫入數(shù)據(jù)  add by bob
-(BOOL)addUt_detectLogsave:(DetectModel *)model {
    //增加一條記錄
  return [self.dataBase executeUpdate:@"INSERT INTO ut_detect(detectingdate, deviceid, indexuom, pvalue, frequency, minvalue, maxvalue) VALUES (?,?,?,?,?,?,?)", model.detectingdate, model.detectid, model.indexuom, model.pvalue, model.frequency, model.minvalue, model.maxvalue];
}
// 獲取ut_detect表下面的數(shù)據(jù) add by bob
- (NSMutableArray *)getUt_detectDataDetial{
    
    NSMutableArray *detectArray = [NSMutableArray array];
    FMResultSet *rs = [self.dataBase executeQuery:[NSString stringWithFormat:@"SELECT * FROM ut_detect"]];
    while ([rs next]){ // 這些屬性名務必按創(chuàng)建表時候的順序來寫
        DetectModel *model = [[DetectModel alloc] init];
        int columnIndex = 0;
        model.detectingdate  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.deviceid = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.indexuom  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.pvalue  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.frequency  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.minvalue  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.maxvalue  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        [detectArray addObject:model];
    }
    
    [rs close];
    return detectArray;
    
}
// 根據(jù)detectingdate刪除某個咨詢對話 add by bob
-(BOOL)deleteUt_detectOfVisitid:(NSString *)detectingdate {
    return [self runSql:[NSString stringWithFormat:@"DELETE FROM ut_detect WHERE detectingdate = %@",detectingdate]];
}
//更新detectingdate對應的咨詢對話信息UPDATE 表名稱 SET 列名稱 = 新值 WHERE 列名稱 = 某值
- (void)updateUt_detectOfVisitid:(NSString *)detectingdate logsave:(DetectModel *)model {
    [self runSql:[NSString stringWithFormat:@"UPDATE ut_detect SET indexuom = '%@', pvalue = '%@', frequency = '%@', minvalue = '%@', maxvalue = '%@' WHERE detectingdate = '%@'",model.indexuom, model.pvalue, model.frequency, model.minvalue, model.maxvalue,  detectingdate]];
}
// 根據(jù)detectingdate判斷數(shù)據(jù)是否存在
-(BOOL)isExitUt_detectOfDetectingdate:(NSString *)detectingdate {
    int count = [self getCountWithSql:[NSString stringWithFormat:@"SELECT count(*) FROM ut_detect WHERE detectingdate = '%@'", detectingdate]];
    if (count > 0) {
        return YES;
    }else{
        return NO;
    }
}

// 創(chuàng)建 ut_testing 表
- (void)ut_testingTableCreate{
    [self createTable:@"ut_testing" sql:@"CREATE table ut_testing (testingid INTEGER PRIMARY KEY AUTOINCREMENT, deviceid varchar(64), testtype varchar(64), testtime varchar(64),indexuom varchar(64),pvalue varchar(64),frequency varchar(64),minvalue varchar(64),maxvalue varchar(64),strength varchar(64),fatigue varchar(64), dectecttime varvhar(5000))"];
}
// 往數(shù)據(jù)庫寫入數(shù)據(jù)  add by bob
-(BOOL)addUt_testingLogsave:(TestModel *)model {
    //增加一條記錄
   return [self.dataBase executeUpdate:@"INSERT INTO ut_testing(deviceid, testtype, testtime, indexuom, pvalue, frequency, minvalue, maxvalue, strength, fatigue, dectecttime) VALUES (?,?,?,?,?,?,?,?,?,?,?)", model.deviceid, model.testtype, model.testtime, model.indexuom, model.pvalue, model.frequency, model.minvalue, model.maxvalue, model.strength, model.fatigue, model.dectecttime];
    
}
// 獲取ut_detect表下面的數(shù)據(jù) add by bob
- (NSMutableArray *)getUt_testingDataDetial{
    
    NSMutableArray *detectArray = [NSMutableArray array];
    FMResultSet *rs = [self.dataBase executeQuery:[NSString stringWithFormat:@"SELECT * FROM ut_testing"]];
    while ([rs next]){
        TestModel *model = [[TestModel alloc] init];
        int columnIndex = 0;   // 這些屬性名務必按創(chuàng)建表時候的順序來寫
        model.testingid = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.deviceid  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.testtype = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.testtime  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.indexuom  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.pvalue  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.frequency  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.minvalue  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.maxvalue  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.strength  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.fatigue  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        model.dectecttime  = [rs stringForColumnIndex:columnIndex]; columnIndex++;
        [detectArray addObject:model];
    }
    
    [rs close];
    return detectArray;
    
}
// 根據(jù)detectingdate刪除某個咨詢對話 add by bob
-(BOOL)deleteUt_testingOfVisitid:(NSInteger)testingid {
    return [self runSql:[NSString stringWithFormat:@"DELETE FROM ut_testing WHERE testingid = %ld",(long)testingid]];
}
具體用法如下:

首先是導入頭文件

NSString *uid = [WSUserUtil getUser]._id;
 // 打開數(shù)據(jù)庫
 [[FmdbTooler sharedInstance] openDatabaseWithUserName:uid];
// 檢測數(shù)據(jù)是否存在 currentDate 查詢的條件
[[FmdbTooler sharedInstance] isExitUt_detectOfDetectingdate:currentDate]
//添加
[[FmdbTooler sharedInstance] addUt_detectLogsave:model];
// 讀取表內(nèi)的所有數(shù)據(jù) , 從數(shù)據(jù)庫中讀取
  NSArray *detectData = [[FmdbTooler sharedInstance] getUt_detectDataDetial];
// 根據(jù)某個屬性刪除某個數(shù)據(jù)
[[FmdbTooler sharedInstance] deleteUt_detectOfVisitid:currentDate]

應部分人的要求,把上文中所有用到的 model 開放出來;
  • DetectModel
#import <Foundation/Foundation.h>

@interface DetectModel : NSObject
// 檢測數(shù)據(jù)標識
@property (copy, nonatomic) NSString *detectid;
// 設備標識
@property (copy, nonatomic) NSString *deviceid;
// 采樣日期
@property (copy, nonatomic) NSString *detectingdate;
// 單位
@property (copy, nonatomic) NSString *indexuom;
// 校準值
@property (copy, nonatomic) NSString *pvalue;
// 采樣周期
@property (copy, nonatomic) NSString *frequency;
// 最大值
@property (copy, nonatomic) NSString *minvalue;
// 最小值
@property (copy, nonatomic) NSString *maxvalue;
@end
  • TestModel
#import <Foundation/Foundation.h>

@interface TestModel : NSObject
// 測試采樣標識
@property (copy, nonatomic) NSString *testingid;
// 檢測類型
@property (copy, nonatomic) NSString *deviceid;
// 檢測類型
@property (copy, nonatomic) NSString *testtype;
// 測試日期
@property (copy, nonatomic) NSString *testtime;
// 單位
@property (copy, nonatomic) NSString *indexuom;
// 校準值
@property (copy, nonatomic) NSString *pvalue;
// 采樣周期
@property (copy, nonatomic) NSString *frequency;
// 最大值
@property (copy, nonatomic) NSString *minvalue;
// 最小值
@property (copy, nonatomic) NSString *maxvalue;
// 肌力
@property (copy, nonatomic) NSString *strength;
// 疲勞度
@property (copy, nonatomic) NSString *fatigue;
// 采樣時間點
@property (copy, nonatomic) NSString *dectecttime;

@end
最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末轻腺,一起剝皮案震驚了整個濱河市瞧捌,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖桨醋,帶你破解...
    沈念sama閱讀 211,496評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件菱魔,死亡現(xiàn)場離奇詭異,居然都是意外死亡蝇棉,警方通過查閱死者的電腦和手機讨阻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,187評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來篡殷,“玉大人钝吮,你說我怎么就攤上這事“辶桑” “怎么了奇瘦?”我有些...
    開封第一講書人閱讀 157,091評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長劲弦。 經(jīng)常有香客問我耳标,道長,這世上最難降的妖魔是什么邑跪? 我笑而不...
    開封第一講書人閱讀 56,458評論 1 283
  • 正文 為了忘掉前任次坡,我火速辦了婚禮呼猪,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘砸琅。我一直安慰自己宋距,他們只是感情好,可當我...
    茶點故事閱讀 65,542評論 6 385
  • 文/花漫 我一把揭開白布明棍。 她就那樣靜靜地躺著乡革,像睡著了一般。 火紅的嫁衣襯著肌膚如雪摊腋。 梳的紋絲不亂的頭發(fā)上沸版,一...
    開封第一講書人閱讀 49,802評論 1 290
  • 那天,我揣著相機與錄音兴蒸,去河邊找鬼视粮。 笑死,一個胖子當著我的面吹牛橙凳,可吹牛的內(nèi)容都是我干的蕾殴。 我是一名探鬼主播,決...
    沈念sama閱讀 38,945評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼岛啸,長吁一口氣:“原來是場噩夢啊……” “哼钓觉!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起坚踩,我...
    開封第一講書人閱讀 37,709評論 0 266
  • 序言:老撾萬榮一對情侶失蹤荡灾,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后瞬铸,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體批幌,經(jīng)...
    沈念sama閱讀 44,158評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,502評論 2 327
  • 正文 我和宋清朗相戀三年嗓节,在試婚紗的時候發(fā)現(xiàn)自己被綠了荧缘。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,637評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡拦宣,死狀恐怖截粗,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情鸵隧,我是刑警寧澤桐愉,帶...
    沈念sama閱讀 34,300評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站掰派,受9級特大地震影響从诲,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜靡羡,卻給世界環(huán)境...
    茶點故事閱讀 39,911評論 3 313
  • 文/蒙蒙 一系洛、第九天 我趴在偏房一處隱蔽的房頂上張望俊性。 院中可真熱鬧,春花似錦描扯、人聲如沸定页。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,744評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽典徊。三九已至,卻和暖如春恩够,著一層夾襖步出監(jiān)牢的瞬間卒落,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,982評論 1 266
  • 我被黑心中介騙來泰國打工蜂桶, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留儡毕,地道東北人。 一個月前我還...
    沈念sama閱讀 46,344評論 2 360
  • 正文 我出身青樓扑媚,卻偏偏與公主長得像腰湾,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子疆股,可洞房花燭夜當晚...
    茶點故事閱讀 43,500評論 2 348

推薦閱讀更多精彩內(nèi)容