iOS開發資料庫篇—SQLite常用的函式
iOS開發資料庫篇—SQLite常用的函式
一、簡單說明
1.開啟資料庫
int sqlite3_open(
const char *filename, // 資料庫的檔案路徑
sqlite3 **ppDb // 資料庫例項
);
2.執行任何SQL語句
int sqlite3_exec(
sqlite3*, // 一個開啟的資料庫例項
const char *sql, // 需要執行的SQL語句
int (*callback)(void*,int,char**,char**), // SQL語句執行完畢後的回撥
void *, // 回撥函式的第1個引數
char **errmsg // 錯誤資訊
);
3.檢查SQL語句的合法性(查詢前的準備)
int sqlite3_prepare_v2(
sqlite3 *db, // 資料庫例項
const char *zSql, // 需要檢查的SQL語句
int nByte, // SQL語句的最大位元組長度
sqlite3_stmt **ppStmt, // sqlite3_stmt例項,用來獲得資料庫資料
const char **pzTail
);
4.查詢一行資料
int sqlite3_step(sqlite3_stmt*); // 如果查詢到一行資料,就會返回SQLITE_ROW
5.利用stmt獲得某一欄位的值(欄位的下標從0開始)
double sqlite3_column_double(sqlite3_stmt*, int iCol); // 浮點資料
int sqlite3_column_int(sqlite3_stmt*, int iCol); // 整型資料
sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol); // 長整型資料
const void *sqlite3_column_blob(sqlite3_stmt*, int iCol); // 二進位制文字資料
const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol); // 字串資料
二、SQLite編碼
1.建立、開啟、關閉資料庫
建立或開啟資料庫
// path是資料庫檔案的存放路徑
sqlite3 *db = NULL;
int result = sqlite3_open([path UTF8String], &db);
程式碼解析:
sqlite3_open()將根據檔案路徑開啟資料庫,如果不存在,則會建立一個新的資料庫。如果result等於常量SQLITE_OK,則表示成功開啟資料庫
sqlite3 *db:一個開啟的資料庫例項
資料庫檔案的路徑必須以C字串(而非NSString)傳入
關閉資料庫:sqlite3_close(db);
2.執行不返回資料的SQL語句
執行創表語句
char *errorMsg = NULL; // 用來儲存錯誤資訊
char *sql = “create table if not exists t_person(id integer primary key autoincrement, name text, age integer);”;
int result = sqlite3_exec(db, sql, NULL, NULL, &errorMsg);
程式碼解析:
sqlite3_exec()可以執行任何SQL語句,比如創表、更新、插入和刪除操作。但是一般不用它執行查詢語句,因為它不會返回查詢到的資料
sqlite3_exec()還可以執行的語句:
(1)開啟事務:begin transaction;
(2)回滾事務:rollback;
(3)提交事務:commit;
3.帶佔位符插入資料
char *sql = “insert into t_person(name, age) values(?, ?);”;
sqlite3_stmt *stmt;
if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) == SQLITE_OK) {
sqlite3_bind_text(stmt, 1, “母雞”, -1, NULL);
sqlite3_bind_int(stmt, 2, 27);
}
if (sqlite3_step(stmt) != SQLITE_DONE) {
NSLog(@”插入資料錯誤”);
}
sqlite3_finalize(stmt);
程式碼解析:
sqlite3_prepare_v2()返回值等於SQLITE_OK,說明SQL語句已經準備成功,沒有語法問題
sqlite3_bind_text():大部分繫結函式都只有3個引數
(1)第1個引數是sqlite3_stmt *型別
(2)第2個引數指佔位符的位置,第一個佔位符的位置是1,不是0
(3)第3個引數指佔位符要繫結的值
(4)第4個引數指在第3個引數中所傳遞資料的長度,對於C字串,可以傳遞-1代替字串的長度
(5)第5個引數是一個可選的函式回撥,一般用於在語句執行後完成記憶體清理工作
sqlite_step():執行SQL語句,返回SQLITE_DONE代表成功執行完畢
sqlite_finalize():銷燬sqlite3_stmt *物件
4.查詢資料
char *sql = “select id,name,age from t_person;”;
sqlite3_stmt *stmt;
if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) == SQLITE_OK) {
while (sqlite3_step(stmt) == SQLITE_ROW) {
int _id = sqlite3_column_int(stmt, 0);
char *_name = (char *)sqlite3_column_text(stmt, 1);
NSString *name = [NSString stringWithUTF8String:_name];
int _age = sqlite3_column_int(stmt, 2);
NSLog(@”id=%i, name=%@, age=%i”, _id, name, _age);
}
}
sqlite3_finalize(stmt);
程式碼解析:
sqlite3_step()返回SQLITE_ROW代表遍歷到一條新記錄
sqlite3_column_*()用於獲取每個欄位對應的值,第2個引數是欄位的索引,從0開始
相關文章
- oracle資料庫常用分析函式與聚合函式的用法Oracle資料庫函式
- SQLite Expert Professional資料庫開發管理SQLite資料庫
- [ 物聯網篇 ] 38 -嵌入式Sqlite資料庫加密SQLite資料庫加密
- Andorid SQLite資料庫開發基礎教程(2)SQLite資料庫
- Andorid SQLite資料庫開發基礎教程(1)SQLite資料庫
- Andorid SQLite資料庫開發基礎教程(3)SQLite資料庫
- 開發常用的輔助函式函式
- PHP常用函式篇PHP函式
- ChiselStore:Rust編寫的Raft分散式SQLite資料庫RustRaft分散式SQLite資料庫
- iOS-GCD常用函式和柵欄函式iOSGC函式
- iOS開發資料儲存篇—iOS中的幾種資料儲存方式iOS
- php開發常用函式總結PHP函式
- 6年iOS開發常用的三方庫iOS
- Python操作SQLite資料庫PythonSQLite資料庫
- Python 操作 SQLite 資料庫PythonSQLite資料庫
- SQLite資料庫管理器:SQLPro for SQLite for MacSQLite資料庫Mac
- JS開發常用工具函式JS函式
- 大資料開發-Hive-常用日期函式&&日期連續題sql套路大資料Hive函式SQL
- 利用wordpress的資料庫操作函式資料庫函式
- iOS混合開發庫(GICXMLLayout)五、Texture篇iOSXML
- iOS混合開發庫(GICXMLLayout)七、JavaScript篇iOSXMLJavaScript
- 高效操控SQLite資料庫,盡在SQLPro for SQLite for MacSQLite資料庫Mac
- SQLPro for SQLite Mac(SQLite資料庫管理工具)SQLiteMac資料庫
- 分散式資料庫拆表拆庫的常用策略分散式資料庫
- 【大資料開發】Hive——Hive函式大全大資料Hive函式
- Python連線SQLite資料庫PythonSQLite資料庫
- Android 中使用 SQLite 資料庫AndroidSQLite資料庫
- sqlite3資料庫操作SQLite資料庫
- python開發第四篇–函式Python函式
- SQL SERVER資料庫datediff函式引發的效能問題SQLServer資料庫函式
- MySQL資料庫基礎篇視窗函式示例解析教程RATZMySql資料庫函式
- iOS開發中常用的鎖iOS
- Python資料庫模組(sqlite3,SQLite3)Python資料庫SQLite
- 好程式設計師大資料培訓分享之《MySQL資料庫》常用函式整理程式設計師大資料MySql資料庫函式
- 常用的幾個提高iOS開發效率的開源類庫及工具iOS
- lr中常用函式以str開頭函式函式
- Python SQLite資料庫程式設計PythonSQLite資料庫程式設計
- php sqlite 建立本地資料庫PHPSQLite資料庫
- 【從零開始學習 MySql 資料庫】(2) 函式MySql資料庫函式