標籤:oc sqlite3 ios fmdb 資料庫
上節介紹了用系統內建的C語言庫操作SQLite的方法,比較繁瑣,使用FMDB會大幅度簡化,並且是物件導向的,使用十分方便。
使用步驟如下:
先從github下載FMDB架構,然後把它匯入工程。
①匯入libsqlite3.0.dylib庫。
②匯入主標頭檔FMDatabase.h。
③建立資料庫物件,傳入路徑,開啟資料庫,如果資料庫不存在會被建立。
NSString *sqlitePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"test1.sqlite"];FMDatabase *db = [FMDatabase databaseWithPath:sqlitePath];[db open];
④查詢操作使用executeQuery:方法,其他動作使用executeUpdate:方法。
例如建立表格和插入資料都是使用Update。
需要注意的是OC字串以%@出現在SQL語句中不用單引號包括,否則會使得存入的資料成為?。
// 建表[db executeUpdate:@"CREATE TABLE IF NOT EXISTS t_product (id integer PRIMARY KEY AUTOINCREMENT, name text NOT NULL, price real);"];// 插入資料// 注意如果使用OC字串%@,不用單引號[db executeUpdateWithFormat:@"INSERT INTO t_product (name,price) values (%@,%d)",[NSString stringWithFormat:@"飲料%d",arc4random_uniform(10000)],arc4random_uniform(100)];
⑤查詢操作通過Query,拿到結果集,結果集可以看作迭代器,調用next屬性到達下一個元素,當前位置可以取出元素,如下:
// 查詢資料FMResultSet *set = [db executeQuery:@"SELECT * FROM t_product"];while (set.next) { NSString *name = [set stringForColumn:@"name"]; double price = [set doubleForColumn:@"price"]; NSLog(@"%@ %f",name,price);}
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
(一一四)使用FMDB操作SQLite資料庫