iOS開發 資料緩衝-資料庫

來源:互聯網
上載者:User

標籤:

iOS中資料存放區方式
  • Plist(NSArray\NSDictionary)
  • Preference(喜好設定\NSUserDefaults)
  • NSCoding (NSKeyedArchiver\NSkeyedUnarchiver)
  • SQlite3
  • Core Date
Plist、Preference、NSCoding的儲存方式

詳見 iOS開發 檔案儲存體方式

資料庫的儲存方式

Core Date:Core Data是iOS5之後才出現的一個架構,它提供了對象-關係映射(ORM)的功能,即能夠將OC對象轉化成資料,儲存在SQLite資料庫檔案中,也能夠將儲存在資料庫中的資料還原成OC對象。在此資料操作期間,我們不需要編寫任何SQL語句。由於功能太過強大,所以帶來的效能損耗也比較大,在此先不介紹Core Data的處理方式,有關Core Data與SQLite 的選擇,詳見談談用 SQLite 和 FMDB 而不用 Core Data。

SQLite

  1. 什麼是SQLite

    • SQLite是一款輕量級的嵌入式資料庫
    • 它佔用資源非常的低,在嵌入式裝置中,可能只需要幾百K的記憶體就夠了
    • 它的處理速度比MySQL、PostgreSQL這兩款著名的資料庫還快
  2. 什麼是資料庫

    • 資料庫(Database)是按照資料結構來組織、儲存和管理資料的倉庫 
    • 資料庫可以分為兩大類:關係型資料庫(主流) 和 對象型資料庫
  3. 常用關聯式資料庫

    • SQLite
    • MySQL
    • Oracle
  4. 資料庫是如何儲存資料的 : 資料庫的儲存結構和excel很像,以表(table)為單位.

  5. 資料庫儲存資料的步驟

    • 建立一張表 (table)
    • 添加多個欄位(column、列、屬性)
    • 添加多行記錄 (row、每行存放多個欄位對應的值)
SQL 陳述式簡介

1.SQL語句的特點

  • 不區分大小寫

  • 每條語句必須以分號結尾

2.SQL中的常用關鍵詞

  • select、insert、update、delete、from、create、where、desc、order、by、group、table、alter、view、index等等

3.資料庫中不可以使用關鍵字來命名表、欄位

SQL語句的種類
  1. 資料定義語句 (DDL:Data Definition Language)

    • 包括createdrop等操作
    • 在資料庫中建立新表或刪除表(create table 或 drop table
  1. 資料操作語句(DML:Data Manipulation Language)

    • 包括insertupdatedelete等操作
    • 上面的3種操作分別用於添加、修改、刪除表中的資料
  2. 資料查詢語句(DQL:Data Query Language)

    • 可以用於查詢獲得表中的資料
    • 關鍵字select是DQL(也是所有SQL)用得最多的操作
    • 其他DQL常用的關鍵字有whereorder bygroup by 和 having
DDL 資料定義
  1. 創表

    • 格式(一般表名以t_作為首碼)

      • create table 表名 (欄位名1 欄位類型1, 欄位名2 欄位類型2, …) ;
      • create table if not exists 表名 (欄位名1 欄位類型1, 欄位名2 欄位類型2, …) ;
    • 欄位類型

      • integer : 整型值
      • real : 浮點值
      • text : 文本字串
      • blob : 位元據(比如檔案)
    • 樣本

        create table t_student (id integer, name text, age inetger, score real) ;
  2. 刪表

    • 格式

      • drop table 表名 ;
      • drop table if exists 表名 ;
    • 樣本

      • drop table t_student ;
DML 資料操作
  1. 插入資料(insert)

    • 格式 : 資料庫中的字串內容應該用單引號 ’ 括住

      • insert into 表名 (欄位1, 欄位2, …) values (欄位1的值, 欄位2的值, …) ;
    • 樣本

        insert into t_student (name, age) values (‘kingsly‘, 20) ;
  2. 更新資料(update)

    • 格式
      • update 表名 set 欄位1 = 欄位1的值, 欄位2 = 欄位2的值, … ;
    • 樣本

        update t_student set name = ‘Roger’, age = 34 ;
    • 結果
      • 將t_student表中的所有記錄的name改為Roger,age都改為34
  3. 刪除資料 (delete)

    • 格式
      • delete from 表名;
    • 樣本

         delete from t_student;
    • 結果
      • 將t_student表表中的所有欄位的所有記錄都刪除
DQL 資料查詢
  1. 格式

    • select 欄位1,欄位2,...from 表名;

    • select * from 表名; // 查詢所有欄位

  2. 樣本

     select name,age frome t_student; select * frome t_student;
  3. 重新命名欄位名

    • 格式

      • select 欄位1 別名 , 欄位2 別名 , … from 表名 別名 ;
      • select 欄位1 別名, 欄位2 as 別名, … from 表名 as 別名 ;
      • select 欄位1 別名, 欄位2 as 別名, … from 表名 as 別名 ;
    • 樣本

      • 給name起個叫做myname的別名,給age起個叫做myage的別名

          select name myname, age myage from t_student ;
      • 給t_student表起個別名叫做s,利用s來參考資料表中的欄位

          select s.name, s.age from t_student s ;
  4. 統計
    • 格式
      • select count [欄位] frome 表名;
      • select count [*] frome 表名
    • 樣本
      • select count (age) from t_student ;
SQL 陳述式中的條件限制
  1. 如果只想更新或者刪除某些固定的記錄,那就必須在DML語句後加上一些條件
  2. 條件陳述式常見的格式

    • where 欄位 = 某個值 ; // 不能用兩個 =
    • where 欄位 != 某個值 ;
    • where 欄位 > 某個值 ;
    • where 欄位1 = 某個值 and 欄位2 > 某個值 ; // and相當於C語言中的 &&
    • where 欄位1 = 某個值 or 欄位2 = 某個值 ; // or 相當於C語言中的 ||
  3. 樣本

    • 將t_student表中年齡大於10 並且 姓名不等於jack的記錄,年齡都改為 5

        update t_student set age = 5 where age > 10 and name != ‘jack’ ;
排序
  1. select * from t_student order by 欄位 ;
  2. 查詢出來的結果可以用order by進行排序
    select * from t_student order by age ;
  1. 預設是按照升序排序(由小到大),也可以變為降序(由大到小)

     select * from t_student order by age desc ;  //降序 select * from t_student order by age desc ;  //降序
  2. 也可以用多個欄位進行排序

    先按照年齡排序(升序),年齡相等就按照身高排序(降序)

     select * from t_student order by age asc, height desc ;
limit 查詢數量
  1. 使用limit可以精確地控制查詢結果的數量

  2. 格式

    • select * from 表名 limit 數值1, 數值2 ;
  3. 樣本

    • 在第5條資料後,然後取10條記錄
        select * from t_student limit 5, 10 ;
建資料表條件約束
  1. 建表時可以給特定的欄位設定一些約束條件,常見的約束有
    • not null :規定欄位的值不能為null
    • unique :規定欄位的值必須唯一
    • default :指定欄位的預設值
  2. 樣本

    • name欄位不能為null,並且唯一,age欄位不能為null,並且預設為1

        create table t_student (id integer, name text not null unique, age integer not null default 1) ;
  3. 主鍵

    • Primary Key ,用來唯一地標識某一條記錄

    • t_student 表中,若沒有設定一個欄位為主鍵,則難免會出現幾個記錄中nameage完全相等的情況,因此需要一個標識來區分,比如人的身份證id,來區分同名和相同年齡的人

    • 主鍵可以是一個或者多個欄位

    • 主鍵應當不影響使用者記錄的資料,最好是由電腦自動產生主鍵

  4. 主鍵的聲明

    • 在創表的時候用primary key聲明一個主鍵,eg:用一個integer類型的id欄位作為t_student表的主鍵

        create table t_student (id integer primary key, name text, age integer) ;
    • 主鍵欄位預設就包含了not null 和 unique 兩個約束

    • 讓integer類型的主鍵自動成長,需要添加 autoincrement,一般情況下讓主鍵自動增加便於管理

        create table t_student (id integer primary key autoincrement, name text, age integer) ;
  5. 外鍵約束

    • 利用外鍵約束可以用來建立表與表之間的聯絡 : 一個表中的一個欄位來自另外一張表裡面的一個欄位。
    • 學生表的班級欄位,來自班級表中的id欄位

        create table t_student (id integer primary key autoincrement, name text, age integer, class_id integer, constraint fk_t_student_class_id_t_class_id foreign key (class_id) (id)) ; references t_class
  6. 表串連查詢

    • 如果需要聯合多張表才能查到想要的資料,一般需要使用表串連
    • 表串連的類型

      • 內串連:inner join 或者 join (顯示的是左右表都有完整欄位值的記錄)

      • 左外串連:left outer join (保證左表資料的完整性)

    • 樣本:查詢網路工程2班的所有學生

        select s.name,s.age from t_student s, t_class c where s.class_id = c.id and c.

iOS開發 資料緩衝-資料庫

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.