iOS中的数据存储方式
(建议:尽量给字段设定严格的约束,以保证数据的规范性)
OS开发数据库篇—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开始
1 // 2 // ViewController.m 3 // IOS_0331_SQLite3 4 // 5 // Created by ma c on 16/3/31. 6 // Copyright © 2016年 博文科技. All rights reserved. 7 // 8 9 #import "ViewController.h" 10 #import11 12 @interface ViewController () 13 - (IBAction)insert; 14 - (IBAction)update; 15 - (IBAction)query; 16 - (IBAction)delete; 17 18 @end 19 20 @implementation ViewController 21 { 22 // db代表整个数据库,db是数据库实例 23 sqlite3 *_db; 24 } 25 26 - (void)viewDidLoad { 27 [super viewDidLoad]; 28 29 [self createDatabase]; 30 } 31 32 - (void)createDatabase 33 { 34 // 0.获得沙盒中的数据库文件名 35 NSString *fileName = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"student.sqlite"]; 36 NSLog(@"%@",fileName); 37 38 // 2.创建(打开)数据库(如果数据库文件不存在会自动创建) 39 int result = sqlite3_open(fileName.UTF8String, &_db); 40 41 if (result == SQLITE_OK) { 42 NSLog(@"成功打开数据库"); 43 // 3.创表 44 const char *sql = "create table if not exists t_student (id integer primary key autoincrement, name text, age integer);"; 45 char *error = NULL; 46 int result = sqlite3_exec(_db, sql, NULL, NULL, &error); 47 48 if (result == SQLITE_OK) { 49 NSLog(@"成功创建表"); 50 } else { 51 NSLog(@"创建表失败"); 52 } 53 54 } else { 55 NSLog(@"打开数据库失败"); 56 } 57 } 58 59 - (IBAction)insert { 60 const char *sql = "insert into t_student (name, age) values ('jack', 20);"; 61 62 int result = sqlite3_exec(_db, sql, NULL, NULL, NULL); 63 64 if (result == SQLITE_OK) { 65 NSLog(@"成功插入数据"); 66 } else { 67 NSLog(@"插入数据失败"); 68 } 69 70 } 71 72 - (IBAction)update { 73 } 74 75 - (IBAction)query { 76 77 //1.定义sql语句 78 const char *sql = "select id, name, age from t_student where name = ?;"; 79 //2.定义一个stmt存放结果集 80 sqlite3_stmt *stmt = NULL; 81 //3.检查sql语句合法性 82 int result = sqlite3_prepare_v2(_db, sql, -1, &stmt, NULL); 83 if (result == SQLITE_OK) { 84 NSLog(@"查询语句是合法的"); 85 //设置占位符内容 86 sqlite3_bind_text(stmt, 1, "jack", -1, NULL); 87 88 //4.执行sql语句 89 while (sqlite3_step(stmt) == SQLITE_ROW) { 90 //获得这行对应的数据 91 92 int sid = sqlite3_column_int(stmt, 0); 93 94 const unsigned char *sname = sqlite3_column_text(stmt, 1); 95 96 int sage = sqlite3_column_int(stmt, 2); 97 98 NSLog(@"%d %s %d",sid, sname, sage); 99 }100 } else {101 NSLog(@"查询语句非法");102 }103 }104 105 - (IBAction)delete {106 }107 @end