IOS 開發學習33 使用sqlite3

2021-09-07 13:38:48 字數 1265 閱讀 7287

sqlite3 路徑 //開啟資料庫路徑連線

select * from sqlite_master where type=」table」; //顯示全部表結構

select * from testable; //顯示某張表資料

.tables //檢視表

.help //檢視幫助

.quit //退出

//// created by 謝廠節 on 15/5/12.

//#import

#import "sqlite3.h"

@inte***ce

dbutils : nsobject

- (nsstring *)filepath;//資料庫檔案的路徑。一般在沙箱的documents裡邊操作

-(void)opendb;

-(void)closedb;

-(nsmutablearray *)getalltypes;

@end

.m檔案

//

// dbutils.m

// smart

//// created by 謝廠節 on 15/5/12.

//#import "dbutils.h"

#import "kmtypes.h"

#import "kmcontents.h"

@implementation

dbutils

//開啟資料庫的方法

- (void)opendb

if (sqlite3_open([[self filepath] utf8string], &db) != sqlite_ok)

}- (void)closedb

//該方法用於返回資料庫在documents目錄中的全路徑資訊

- (nsstring *)filepath

查詢資料全部類別

- (nsmutablearray *)getalltypes

sqlite3_finalize(statement);

}[self closedb];

return array;

}@end

這裡僅僅實現乙個簡單的查詢功能。

iOS開發學習44 使用UIScrollView

import viewcontroller.h inte ce viewcontroller end implementation viewcontroller void viewdidload void didreceivememorywarning end注意點 uiscrollview使用步驟...

iOS開發 FMDB使用

demo位址 nslog path database fmdatabase alloc initwithpath path id欄位為自增欄位 name char 256位 age char 3位 char 2位 phone char 13位 address char 100位的 if databa...

iOS開發 FMDatabase 使用

id integer primary key autoincrement 設定自增長主鍵 指定資料儲存路徑 fmdatabase 管理資料的類 增 刪 改 查 fmdatabase database fmdatabase alloc initwithpath path open 開啟資料庫 檔案 如...