天天看點

SQLite的基本使用 與FMDB架構的使用

SQLite是一款輕型的嵌入式資料庫

它占用資源非常的低,在嵌入式裝置中,可能隻需要幾百K的記憶體就夠了

它的處理速度比Mysql、PostgreSQL這兩款著名的資料庫都還快

什麼是資料庫 資料庫(Database)是按照資料結構來組織、存儲和管理資料的倉庫 資料庫可以分為2大種類 關系型資料庫(主流) 對象型資料庫

常用關系型資料庫 PC端:Oracle、MySQL、SQLServer、Access、DB2、Sybase 嵌入式\移動用戶端:SQLite

資料庫是如何存儲資料的: 資料庫的存儲結構和excel很像,以表(table)為機關

資料庫存儲資料的步驟 建立一張表(table) 添加多個字段(column,列,屬性) 添加多行記錄(row,每行存放多個字段對應的值)

Navicat的使用: Navicat是一款著名的資料庫管理軟體,支援大部分主流資料庫(包括SQLite) 1、建立資料庫連接配接

SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用

2、建立表并設定字段

SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用
SQLite的基本使用 與FMDB架構的使用

SQL語句

SQL是一種對關系型資料庫中的資料進行定義和操作的語言

SQL語句的特點 不區分大小寫(比如資料庫認為user和UsEr是一樣的) 每條語句都必須以分号 ;結尾

SQL中的常用關鍵字有 select、insert、update、delete、from、create、where、desc、order、by、group、table、alter、view、index等等

資料庫中不可以使用關鍵字來命名表、字段

SQL語句的種類

資料定義語句(DDL:DataDefinitionLanguage) 包括create和drop等操作 在資料庫中建立新表或删除表(create  table或drop  table)

資料操作語句(DML:DataManipulation Language) 包括insert、update、delete等操作 上面的3種操作分别用于添加、修改、删除表中的資料

資料查詢語句(DQL:Data QueryLanguage) 可以用于查詢獲得表中的資料 關鍵字select是DQL(也是所有SQL)用得最多的操作 其他DQL常用的關鍵字有where,orderby,groupby和having

字段類型

SQLite将資料劃分為以下幾種存儲類型: integer:整型值 real:浮點值 text:文本字元串 blob:二進制資料(比如檔案)

實際上SQLite是無類型的 就算聲明為integer類型,還是能存儲字元串文本(主鍵除外) 建表時聲明啥類型或者不聲明類型都可以,也就意味着創表語句可以這麼寫: create table t_student(name, age);

為了保持良好的程式設計規範、友善程式員之間的交流,編寫建表語句的時候最好加上每個字段的具體類型

DDL資料定義語句: 建立表

格式: create table 表名(字段名1字段類型1,字段名2 字段類型2, …) ; 示例: create  table  t_student (id integer, name text, age inetger, score real);

通常用下面這種方式 (先判斷一下是否有同名的表,如果沒有就建立) create table if not exists表名(字段名1字段類型1,字段名2 字段類型2, …); 示例: primary key:id是主鍵  

AUTOINCREMENT:主鍵的值自動增長

creat table if not exists t_user (idinteger primary keyAUTOINCREMENT, name text, age integer);

删除表: 格式 drop table表名 ; drop tableifexists 表名; 示例 drop  table  t_student;

DML資料操作語句: 插入資料(insert) 格式 insert into 表名(字段1,字段2, …)values(字段1的值,字段2的值, …) ; 示例 insert into t_student(name, age) values( ‘zhangsan’, 10);

注意 資料庫中的字元串内容應該用單引号’包覆

更新資料(update)

格式 update表名set字段1=字段1的值,字段2=字段2的值, … ;

示例 update t_student set name= ‘jack’, age =20 ;

注意 上面的示例會将t_student表中所有記錄的name都改為jack,age都改為20

删除資料(delete)

格式 delete from 表名 ;

示例 delete from t_student;

注意 上面的示例會将t_student表中所有記錄都删掉

條件語句

如果隻想更新或者删除某些固定的記錄,那就必須在DML語句後加上一些條件

條件語句的常見格式 where 字段 =某個值 ;  // 不能用兩個 = where字段 is 某個值 ;  //is相當于= where 字段 !=某個值 ; where 字段 isnot某個值 ;  //isnot 相當于!= where字段 >某個值 ; where字段1= 某個值and字段2>某個值;  //and相當于C語言中的&& where字段1= 某個值or字段2=某個值;  // or 相當于C語言中的||

示例 将 t_student 表中年齡大于 10 并且 姓名不等于 jack 的記錄,年齡都改為 5 update   t_student   set   age = 5   where   age > 10   and   name != ‘jack ’ ;

删除 t_student 表中年齡小于等于 10 或者 年齡大于 30 的記錄 delete  from   t_student   where age <= 10 or age > 30 ;

将 t_student 表中 名字 等于 jack 的 記錄 , score 字段的值  都改為  age字段的值

update  t_student  set  score = age where name = ‘jack’ ;

DQL語句:資料查詢語句

格式 select 字段 1, 字段 2, … from 表名 ; select * from 表名 ;    / /  查詢所有的字段 示例 select name, age from  t_student ; // 從表t_student中查詢name,age兩個字段 select *  from  t_student ;  // 從表t_student中查詢所有字段 select *  from  t_student  where  age > 10 ;   / /   條件查詢 ,查詢表中年齡大于10的所有字段

模糊查詢

// 查詢表中name字段包含n的記錄

select  *  from  t_student  where name like '%n%';   // 查詢表中name字段包含n或者phone字段包含5的記錄 select * from t_student where name like '%n%' or phone like '%5%';

起别名 

格式(字段和表都可以起别名) select字段1 别名,字段2 别名,… from表名别名; select字段1别名,字段2as 别名,… from表名as 别名; select 别名.字段1, 别名.字段2, … from表名 别名; 示例 select name myname, age myage from t_student; 給name起個叫做myname的别名,給age起個叫做myage的别名 select s.name,s.age from t_student s; 給t_student表起個别名叫做s,利用s來引用表中的字段

計算記錄的數量

格式 select count(字段)from表名 ; select count( *) from表名; 示例 select count(age)from t_student; select count(*)from t_student where score>= 60;

排序

按照某個字段的值,進行排序搜尋 select * fromt_studentorderby 字段 ; select * fromt_studentorderby age;

預設是按照升序排序(由小到大),也可以變為降序(由大到小) select * fromt_studentorder byage desc; //降序 select * fromt_studentorder byage asc;  //升序(預設)

也可以用多個字段進行排序 select * fromt_studentorderby age asc,heightdesc; 先按照年齡排序(升序),年齡相等就按照身高排序(降序)

limit

使用limit可以精确地控制查詢結果的數量,比如每次隻查詢10條資料

格式 select * from表名limit數值1,數值2;

示例 select * fromt_studentlimit4,8; 可以了解為:跳過最前面4條語句,然後取8條記錄

limit常用來做分頁查詢,比如每頁固定顯示5條資料,那麼應該這樣取資料 第1頁:limit 0,5 第2頁:limit5, 5 第3頁:limit10,5 … 第n頁:limit5*(n-1),5

猜猜下面語句的作用 select* fromt_studentlimit 7; 相當于select *fromt_studentlimit0,7; 表示取最前面的7條記錄

簡單限制

建表時可以給特定的字段設定一些限制條件,常見的限制有 not null:規定字段的值不能為null unique:規定字段的值必須唯一 default:指定字段的預設值

(建議:盡量給字段設定嚴格的限制,以保證資料的規範性)

示例 create table t_student(idinteger, name text not null unique,age integer not null default 1 ); name字段不能為null,并且唯一 age字段不能為null,并且預設為1

什麼是主鍵 主鍵( Primary Key ,簡稱 PK )用來唯一地辨別某一條記錄 例如 t_student 可以增加一個 id 字段作為主鍵,相當于 人的身份證 主鍵可以是一個字段或多個 字段 主鍵的設計原則

主鍵應當是對使用者沒有意義的 永遠也不要更新主鍵 主鍵不應包含動态變化的資料 主鍵應當由計算機自動生成

外鍵限制

利用外鍵限制可以用來建立表與表之間的聯系 外鍵的一般情況是:一張表的某個字段,引用着另一張表的主鍵字段

建立一個外鍵 create table t_student (idinteger primary key autoincrement,nametext,age integer,class_id integer,constraint fk_t_student_class_id foreignkey(class_id) references t_class (id); t_student表中有一個叫做fk_t_student_class_id的外鍵 這個外鍵的作用是用t_student表中的class_id字段引用t_class表的id字段

表連接配接查詢

示例 查詢0316iOS班的所有學生 select s.name,s.age fromt_student s,t_class c where s.class_id =c.id and c.name = ‘0316iOS’;

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ FMDB

FMDB是iOS平台的SQLite資料庫架構 FMDB以OC的方式封裝了SQLite的C語言API

FMDB的優點 使用起來更加面向對象,省去了很多麻煩、備援的C語言代碼 對比蘋果自帶的CoreData架構,更加輕量級和靈活 提供了多線程安全的資料庫操作方法,有效地防止資料混亂

FMDB有三個主要的類 FMDatabase 一個FMDatabase對象就代表一個單獨的SQLite資料庫 用來執行SQL語句

FMResultSet 使用FMDatabase執行查詢後的結果集

FMDatabaseQueue 用于在多線程中執行多個查詢或更新,它是線程安全的

執行更新

在FMDB中,除查詢以外的所有操作,都稱為“更新” create、drop、insert、update、delete等

使用executeUpdate:方法執行更新 - (BOOL)executeUpdate:(NSString*)sql, ... - (BOOL)executeUpdateWithFormat:(NSString*)format,... - (BOOL)executeUpdate:(NSString*)sql withArgumentsInArray:(NSArray*)arguments

示例

[db executeUpdate:@"UPDATEt_studentSET age = ? WHERE name = ?;", @20, @"Jack"]

執行查詢

查詢方法 - (FMResultSet *)executeQuery:(NSString*)sql, ... - (FMResultSet *)executeQueryWithFormat:(NSString*)format,... - (FMResultSet *)executeQuery:(NSString *)sql withArgumentsInArray:(NSArray*)arguments

示例

// 查詢資料

FMResultSet *rs = [db executeQuery:@"SELECT* FROM t_student"];

// 周遊結果集

while ([rs next]) {

   NSString*name = [rs stringForColumn:@"name"];

   int age= [rs intForColumn:@"age"];

   doublescore = [rs doubleForColumn:@"score"];

}

示例: 建立資料庫,建立表

NSString *cachePath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
    // 拼接檔案名
    NSString *filePath = [cachePath stringByAppendingPathComponent:@"contact.sqlite"];
    
    // 建立一個資料庫的執行個體,僅僅在建立一個執行個體,并不會打開資料庫
    FMDatabase *db = [FMDatabase databaseWithPath:filePath];
    _db = db;
    // 打開資料庫
    BOOL flag = [db open];
    if (flag) {
        NSLog(@"打開成功");
    }else{
        NSLog(@"打開失敗");
    }
    
    // 建立資料庫表
    // 資料庫操作:插入,更新,删除都屬于update
    // 參數:sqlite語句
   BOOL flag1 = [db executeUpdate:@"create table if not exists t_contact (id integer primary key autoincrement,name text,phone text);"];
    if (flag1) {
        NSLog(@"建立成功");
    }else{
        NSLog(@"建立失敗");

    }
           

增:

- (IBAction)insert:(id)sender {
    // ?:表示資料庫裡面的占位符
   BOOL flag = [_db executeUpdate:@"insert into t_contact (name,phone) values (?,?)",@"oooo",@"21321321"];
    if (flag) {
        NSLog(@"success");
    }else{
         NSLog(@"failure");
    }
    
}
           

删:

- (IBAction)delete:(id)sender {
    BOOL flag = [_db executeUpdate:@"delete from t_contact;"];
    if (flag) {
        NSLog(@"success");
    }else{
        NSLog(@"failure");
    }
}
           

改:

- (IBAction)update:(id)sender {
    // FMDB?,隻能是對象,不能是基本資料類型,如果是int類型,就包裝成NSNumber
    BOOL flag = [_db executeUpdate:@"update t_contact set name = ?",@"abc"];
    if (flag) {
        NSLog(@"success");
    }else{
        NSLog(@"failure");
    }
}
           

查:

- (IBAction)select:(id)sender {
    
  FMResultSet *result =  [_db executeQuery:@"select * from t_contact"];
    
    // 從結果集裡面往下找
    while ([result next]) {
     NSString *name = [result stringForColumn:@"name"];
        NSString *phone = [result stringForColumn:@"phone"];
        NSLog(@"%@--%@",name,phone);
    }
    
}
           

FMDatabaseQueue

FMDatabase 這個類是線程不安全的 , 如果在多個線程中同時使用一個 FMDatabase 執行個體,會造成資料混亂等問題 為了保證線程安全, FMDB 提供友善快捷的 FMDatabaseQueue 類

FMDatabaseQueue 的建立

FMDatabaseQueue*queue = [FMDatabaseQueue databaseQueueWithPath:path];

簡單使用

[queue inDatabase:^(FMDatabase *db) {

   [db executeUpdate:@"INSERTINTO t_student(name)VALUES (?)",@"Jack"];

   [db executeUpdate:@"INSERTINTO t_student(name)VALUES (?)",@"Rose"];

   [db executeUpdate:@"INSERTINTO t_student(name)VALUES (?)",@"Jim"];

   FMResultSet *rs = [db executeQuery:@"select* from t_student"];

   while ([rs next]) {

        // …

   }

}];

使用事務

[queue inTransaction:^(FMDatabase *db, BOOL*rollback) {

   [db executeUpdate:@"INSERTINTO t_student(name)VALUES (?)",@"Jack"];

   [db executeUpdate:@"INSERTINTO t_student(name)VALUES (?)",@"Rose"];

   [db executeUpdate:@"INSERTINTO t_student(name)VALUES (?)",@"Jim"];

   FMResultSet *rs = [db executeQuery:@"select* from t_student"];

   while ([rs next]) {

        // …

   }

}];

n 事務復原

*rollback = YES;

示例:

NSString *cachePath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
    // 拼接檔案名
    NSString *filePath = [cachePath stringByAppendingPathComponent:@"user.sqlite"];
    // 建立資料庫執行個體
    FMDatabaseQueue *queue = [FMDatabaseQueue databaseQueueWithPath:filePath];
    _queue = queue;
    
    // 建立資料庫表
    // 提供了一個多線程安全的資料庫執行個體
    [queue inDatabase:^(FMDatabase *db) {
        
      BOOL flag =  [db executeUpdate:@"create table if not exists t_user (id integer primary key autoincrement,name text,money integer)"];
        
        if (flag) {
            NSLog(@"success");
        }else{
            NSLog(@"failure");
        }
        
    }];
           

改:

- (IBAction)update:(id)sender {
    // update t_user set money = 500 where name = 'a';
    //  update t_user set money = 1000 where name = 'b';
    // a -> b 500 a 500
    // b + 500 = b 1000
    
    
    [_queue inDatabase:^(FMDatabase *db) {
        
        // 開啟事務
        [db beginTransaction];
       BOOL flag = [db executeUpdate:@"update t_user set money = ? where name = ?;",@500,@"a"];
        if (flag) {
            NSLog(@"success");
        }else{
            NSLog(@"failure");
            // 復原
            [db rollback];
        }
        
        BOOL flag1 = [db executeUpdate:@"updat t_user set money = ? where name = ?;",@1000,@"b"];
        if (flag1) {
            NSLog(@"success");
        }else{
            NSLog(@"failure");
            [db rollback];
        }
        
        // 全部操作完成時候再去
        [db commit];
    }];
    
}
           

增:

- (IBAction)add:(id)sender {
    
    [_queue inDatabase:^(FMDatabase *db) {
        
       BOOL flag = [db executeUpdate:@"insert into t_user (name,money) values (?,?)",@"a",@1000];
        if (flag) {
            NSLog(@"success");
        }else{
            NSLog(@"failure");
        }
        
        [db executeUpdate:@"insert into t_user (name,money) values (?,?)",@"b",@500];
        
    }];
    
}
           

删:

- (IBAction)delete:(id)sender {
    [_queue inDatabase:^(FMDatabase *db) {
        BOOL flag = [db executeUpdate:@"delete from t_user;"];
        if (flag) {
            NSLog(@"success");
        }else{
            NSLog(@"failure");
        }
        
    }];
}
           

繼續閱讀