數(shù)據(jù)存儲的方式
- Plist(NSArray/NSDictionary):只能存儲數(shù)組和字典孩灯,但是數(shù)據(jù)和字典里面不能有自定義對象;
- 偏好設(shè)置:也不能存儲自定義對象沈条;
- 歸檔:能存儲自定義對象刨肃,局限是一次性做讀取和存儲操作;
- SQLite 數(shù)據(jù)庫:
- 操作數(shù)據(jù)比較快厌衔,讀取比較方便;
- 可以局部的讀群丛馈富寿;
- 體積比較小,占用內(nèi)存資源比較少祟同。
- FMDatabase:對SQLite進行了封裝作喘,使用方便簡單理疙;
- CoreData:iOS 系統(tǒng)自帶持久化處理晕城。
SQL語句的種類
-
數(shù)據(jù)定義語句(DDL:Data Definition Language)
- 包括create和drop等操作
- 在數(shù)據(jù)庫中創(chuàng)建新表或刪除表(create table或 drop table)
-
數(shù)據(jù)操作語句(DML:Data Manipulation Language)
- 包括insert、update窖贤、delete等操作
- 上面的3種操作分別用于添加砖顷、修改、刪除表中的數(shù)據(jù)
-
數(shù)據(jù)查詢語句(DQL:Data Query Language)
- 可以用于查詢獲得表中的數(shù)據(jù)
- 關(guān)鍵字select是DQL(也是所有SQL)用得最多的操作
- 其他DQL常用的關(guān)鍵字有where赃梧,order by滤蝠,group by和having
iOS 中使用sqlite3 數(shù)據(jù)庫
- Student 表
id | name | age | class |
---|---|---|---|
1 | 劉一 | 15 | 初二(1)班 |
2 | 陳二 | 16 | 初二(2)班 |
3 | 張三 | 15 | 初二(3)班 |
4 | 李四 | 14 | 初二(2)班 |
5 | 王五 | 15 | 初二(2)班 |
6 | 趙六 | 15 | 初二(1)班 |
表名為 t_student
-
操作數(shù)據(jù)庫需要以下步驟:
- 打開數(shù)據(jù)庫;
- 創(chuàng)建數(shù)據(jù)庫表授嘀,表名通常以 t_開頭物咳;
- 設(shè)計表的字段;(每個表中必須有一個字段為主鍵蹄皱,記錄唯一的標(biāo)識符)
- 對數(shù)據(jù)的操作:插入览闰、更新、刪除和查詢等等操作巷折。
打開數(shù)據(jù)庫
static sqlite3 *_db = nil;
+ (void)initialize
{
//獲取 cache 的路徑
NSString *cachePath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).firstObject;
//數(shù)據(jù)庫文件的全路徑
NSString *sqlitePath = [cachePath stringByAppendingPathComponent:@"yxl.sqlite"];
//打開數(shù)據(jù)庫
if (sqlite3_open(sqlitePath.UTF8String, &_db) == SQLITE_OK) {
NSLog(@"數(shù)據(jù)庫打開成功...");
} else { //打開數(shù)據(jù)庫如果返回的狀態(tài)碼不是 SQLITE_OK压鉴,那么打開數(shù)據(jù)失敗,關(guān)閉數(shù)據(jù)庫并且輸出錯誤信息
sqlite3_close(_db);
NSLog(@"打開數(shù)據(jù)庫失敹途小:%s...", sqlite3_errmsg(_db));
}
}
- 創(chuàng)建表
- 創(chuàng)表格式
create table 表名 (字段名1 字段類型1, 字段名2 字段類型2, …) ;
create table if not exists 表名 (字段名1 字段類型1, 字段名2 字段類型2, …) ;
- 刪表格式
drop table 表名 ;
drop table if exists 表名 ;
- SQLite將數(shù)據(jù)劃分為以下幾種存儲類型:
integer : 整型值
real : 浮點值
text : 文本字符串
blob : 二進制數(shù)據(jù)(比如文件)
示例
+ (void)createTableStudent {
char *errmsg = NULL;
char *sql = "create table if not exists t_student(id integer primary key, name text not null, age integer not null default 15, class text);";
sqlite3_exec(_db, sql, NULL, NULL, &errmsg);
if (errmsg) {
NSLog(@"創(chuàng)建表失斢涂浴:%s", errmsg);
} else {
NSLog(@"創(chuàng)建表成功...");
}
}
- 插入數(shù)據(jù)
- 格式
insert into 表名 (字段1, 字段2, …) values (字段1的值, 字段2的值, …) ;
示例
// 插入一條數(shù)據(jù)
+ (void)insertStudentData {
char *errmsg = NULL;
//插入數(shù)據(jù)語句
char *sql = "insert into t_student (name, age, class) values ('劉一', 15, '初二(1)班');";
sqlite3_exec(_db, sql, NULL, NULL, &errmsg);
if (errmsg) {
NSLog(@"插入數(shù)據(jù)失敗:%s", errmsg);
} else {
NSLog(@"插入數(shù)據(jù)成功...");
}
}
// 插入多條數(shù)據(jù)
+ (void)insertStudentData {
char *errmsg = NULL;
NSArray *names = @[@"劉一", @"陳二", @"張三", @"李四", @"王五", @"趙六"];
NSArray *classes = @[@"初二(1)班", @"初二(2)班", @"初二(3)班", @"初二(2)班", @"初二(2)班", @"初二(1)班"];
for (int i = 0; i < names.count; i++) {
NSString *sql = [NSString stringWithFormat:@"insert into t_student (name, class) values ('%@', '%@');", names[i], classes[i]];
sqlite3_exec(_db, sql.UTF8String, NULL, NULL, &errmsg);
if (errmsg) {
NSLog(@"插入數(shù)據(jù)失斒鹉狻:%s", errmsg);
} else {
NSLog(@"插入數(shù)據(jù)成功...");
}
}
}
- 查詢數(shù)據(jù)
+ (void)queryStudentData {
sqlite3_stmt *stmt = NULL;
//查詢語句
char *sql = "select * from t_student;";
if (sqlite3_prepare(_db, sql, -1, &stmt, NULL) == SQLITE_OK) {
NSLog(@"查詢數(shù)據(jù)成功...");
while (sqlite3_step(stmt) == SQLITE_ROW) {
int ID = sqlite3_column_int(stmt, 0);
NSString *name = [NSString stringWithUTF8String:(const char *)sqlite3_column_text(stmt, 1)];
int age = sqlite3_column_int(stmt, 2);
NSString *class = [NSString stringWithUTF8String:(const char *)sqlite3_column_text(stmt, 3)];
NSLog(@"打印數(shù)據(jù):%d - %@ - %d - %@", ID, name, age, class);
}
} else {
NSLog(@"查詢數(shù)據(jù)失斖裨住:%s", sqlite3_errmsg(_db));
}
}
- 條件查詢
如果只想更新或者刪除某些固定的記錄,那就必須在DML語句后加上一些條件
- 條件語句的常見格式
where 字段 = 某個值 ; // 不能用兩個 =
where 字段 is 某個值 ; // is 相當(dāng)于 =
where 字段 != 某個值 ;
where 字段 is not 某個值 ; // is not 相當(dāng)于 !=
where 字段 > 某個值 ;
where 字段1 = 某個值 and 字段2 > 某個值 ; // and相當(dāng)于C語言中的 &&
where 字段1 = 某個值 or 字段2 = 某個值 ; // or 相當(dāng)于C語言中的 ||
- 更新數(shù)據(jù)
- 格式
update 表名 set 字段1 = 字段1的值, 字段2 = 字段2的值, … ;
示例
+ (void)updateStudentData {
char *errmsg = NULL;
char *sql = "update t_student set class = '初三(1)班', age = 16 where name = '劉一';";
sqlite3_exec(_db, sql, NULL, NULL, &errmsg);
if (errmsg) {
NSLog(@"修改數(shù)據(jù)失斖魄睢:%s", errmsg);
} else {
NSLog(@"修改數(shù)據(jù)成功...");
}
}
- 刪除數(shù)據(jù)
- 格式
delete from 表名 ;
+ (void)deleteStudentData {
char *errmsg = NULL;
char *sql = "delete from t_student where name = '劉一';";
sqlite3_exec(_db, sql, NULL, NULL, &errmsg);
if (errmsg) {
NSLog(@"刪除數(shù)據(jù)失斝陌:%s", errmsg);
} else {
NSLog(@"刪除數(shù)據(jù)成功...");
}
}
- 模糊查找
- % :表示任意0個或多個字符∮Ш悖可匹配任意類型和長度的字符
+ (void)fuzzyQueryStudentData {
sqlite3_stmt *stmt = NULL;
char *sql = "select * from t_student where class like '%2%';";
if (sqlite3_prepare(_db, sql, -1, &stmt, NULL) == SQLITE_OK) {
NSLog(@"查詢數(shù)據(jù)成功...");
while (sqlite3_step(stmt) == SQLITE_ROW) {
int ID = sqlite3_column_int(stmt, 0);
NSString *name = [NSString stringWithUTF8String:(const char *)sqlite3_column_text(stmt, 1)];
int age = sqlite3_column_int(stmt, 2);
NSString *class = [NSString stringWithUTF8String:(const char *)sqlite3_column_text(stmt, 3)];
NSLog(@"打印數(shù)據(jù):%d - %@ - %d - %@", ID, name, age, class);
}
} else {
NSLog(@"查詢數(shù)據(jù)失斍聪獭:%s", sqlite3_errmsg(_db));
}
}
- _ : 表示任意單個字符轮听。匹配單個任意字符,它常用來限制表達式的字符長度語句
+ (void)fuzzyQueryStudentData {
sqlite3_stmt *stmt = NULL;
char *sql = "select * from t_student where name like '_二';";
if (sqlite3_prepare(_db, sql, -1, &stmt, NULL) == SQLITE_OK) {
NSLog(@"查詢數(shù)據(jù)成功...");
while (sqlite3_step(stmt) == SQLITE_ROW) {
int ID = sqlite3_column_int(stmt, 0);
NSString *name = [NSString stringWithUTF8String:(const char *)sqlite3_column_text(stmt, 1)];
int age = sqlite3_column_int(stmt, 2);
NSString *class = [NSString stringWithUTF8String:(const char *)sqlite3_column_text(stmt, 3)];
NSLog(@"打印數(shù)據(jù):%d - %@ - %d - %@", ID, name, age, class);
}
} else {
NSLog(@"查詢數(shù)據(jù)失斄爰选:%s", sqlite3_errmsg(_db));
}
}
- 排序
- 按照某個字段的值血巍,進行排序搜索
select * from t_student order by 字段 ;
select * from t_student order by age ;- 默認是按照升序排序(由小到大),也可以變?yōu)榻敌颍ㄓ纱蟮叫珊随。?br> select * from t_student order by age desc ; //降序
select * from t_student order by age asc ; // 升序(默認)- 也可以用多個字段進行排序
select * from t_student order by age asc, class desc ;
先按照年齡排序(升序)述寡,年齡相等就按照班級排序(降序)