標籤:
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:
什麼是SQLite
- SQLite是一款輕量級的嵌入式資料庫
- 它佔用資源非常的低,在嵌入式裝置中,可能只需要幾百K的記憶體就夠了
- 它的處理速度比MySQL、PostgreSQL這兩款著名的資料庫還快
什麼是資料庫
- 資料庫(Database)是按照資料結構來組織、儲存和管理資料的倉庫
- 資料庫可以分為兩大類:關係型資料庫(主流) 和 對象型資料庫
常用關聯式資料庫
資料庫是如何儲存資料的 : 資料庫的儲存結構和excel很像,以表(table)為單位.
資料庫儲存資料的步驟
- 建立一張表 (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語句的種類
資料定義語句 (DDL:Data Definition Language)
- 包括create和drop等操作
- 在資料庫中建立新表或刪除表(create table 或 drop table)
資料操作語句(DML:Data Manipulation Language)
- 包括insert、update、delete等操作
- 上面的3種操作分別用於添加、修改、刪除表中的資料
資料查詢語句(DQL:Data Query Language)
- 可以用於查詢獲得表中的資料
- 關鍵字select是DQL(也是所有SQL)用得最多的操作
- 其他DQL常用的關鍵字有where,order by,group by 和 having
DDL 資料定義
創表
刪表
格式
- drop table 表名 ;
- drop table if exists 表名 ;
樣本
DML 資料操作
插入資料(insert)
格式 : 資料庫中的字串內容應該用單引號 ’ 括住
- insert into 表名 (欄位1, 欄位2, …) values (欄位1的值, 欄位2的值, …) ;
樣本
insert into t_student (name, age) values (‘kingsly‘, 20) ;
更新資料(update)
刪除資料 (delete)
- 格式
樣本
delete from t_student;
- 結果
- 將t_student表表中的所有欄位的所有記錄都刪除
DQL 資料查詢
格式
select 欄位1,欄位2,...from 表名;
select * from 表名; // 查詢所有欄位
樣本
select name,age frome t_student; select * frome t_student;
重新命名欄位名
格式
- 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 ;
- 統計
- 格式
- select count [欄位] frome 表名;
- select count [*] frome 表名
- 樣本
- select count (age) from t_student ;
SQL 陳述式中的條件限制
- 如果只想更新或者刪除某些固定的記錄,那就必須在DML語句後加上一些條件
條件陳述式常見的格式
- where 欄位 = 某個值 ; // 不能用兩個 =
- where 欄位 != 某個值 ;
- where 欄位 > 某個值 ;
- where 欄位1 = 某個值 and 欄位2 > 某個值 ; // and相當於C語言中的 &&
- where 欄位1 = 某個值 or 欄位2 = 某個值 ; // or 相當於C語言中的 ||
樣本
排序
- select * from t_student order by 欄位 ;
- 查詢出來的結果可以用order by進行排序
select * from t_student order by age ;
預設是按照升序排序(由小到大),也可以變為降序(由大到小)
select * from t_student order by age desc ; //降序 select * from t_student order by age desc ; //降序
也可以用多個欄位進行排序
先按照年齡排序(升序),年齡相等就按照身高排序(降序)
select * from t_student order by age asc, height desc ;
limit 查詢數量
使用limit可以精確地控制查詢結果的數量
格式
- select * from 表名 limit 數值1, 數值2 ;
樣本
select * from t_student limit 5, 10 ;
建資料表條件約束
- 建表時可以給特定的欄位設定一些約束條件,常見的約束有
- not null :規定欄位的值不能為null
- unique :規定欄位的值必須唯一
- default :指定欄位的預設值
樣本
name欄位不能為null,並且唯一,age欄位不能為null,並且預設為1
create table t_student (id integer, name text not null unique, age integer not null default 1) ;
主鍵
Primary Key ,用來唯一地標識某一條記錄
t_student 表中,若沒有設定一個欄位為主鍵,則難免會出現幾個記錄中name和age完全相等的情況,因此需要一個標識來區分,比如人的身份證id,來區分同名和相同年齡的人
主鍵可以是一個或者多個欄位
主鍵應當不影響使用者記錄的資料,最好是由電腦自動產生主鍵
主鍵的聲明
在創表的時候用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) ;
外鍵約束
- 利用外鍵約束可以用來建立表與表之間的聯絡 : 一個表中的一個欄位來自另外一張表裡面的一個欄位。
學生表的班級欄位,來自班級表中的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
表串連查詢
iOS開發 資料緩衝-資料庫