(一一四)使用FMDB操作SQLite資料庫

來源:互聯網
上載者:User

標籤: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資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.