iOS_数据库3_sqlite3基本操作
终于效果图:
Sqlite3函数总结
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); // 字符串数据
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
控制器中直接写SQL语句,未封装
//
// ViewController.m
// 1.sqlite3基本操作
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
//
#import "ViewController.h"
// 1.导入库,2.加入主头文件
#import <sqlite3.h>
@interface ViewController ()
{
// db代表着整个数据库。db是数据库实例
sqlite3 *_db;
}
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// 0.获得沙盒中的数据库文件名称
NSString *filename = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"student.sqlite"];
NSLog(@"filePath:%@",filename);
/*
2014-11-02 18:32:38.895 1.sqlite3基本操作[85356:245858] filePath:/Users/juns/Library/Developer/CoreSimulator/Devices/3198E002-E3C9-4523-983E-AC3E1283A654/data/Containers/Data/Application/E1150608-3EB8-4B9D-87AF-33EDF9FB6FF3/Documents/student.sqlite
2014-11-02 18:32:38.896 1.sqlite3基本操作[85356:245858] 成功打开数据库
2014-11-02 18:32:38.897 1.sqlite3基本操作[85356:245858] 成功创建t_student表
*/
// 1.创建(打开)数据库(假设是首次打开,则数据库文件不存在。那么会自己主动创建)
// OC字符串,直接转成C语言字符串,通过 UTF8String方法
int result = sqlite3_open(filename.UTF8String, &_db);
if (result == SQLITE_OK) {
NSLog(@"成功打开数据库");
// 2.创表
const char *sql = "create table if not exists t_student (id integer primary key autoincrement, name text, age integer);";
// 凡是要传地址的,最好先清空,防止出现野指针,C语言中空是NULL
char *errorMesg = NULL;
// 參数3和4是回调时用
int result = sqlite3_exec(_db, sql, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功创建t_student表");
} else {
NSLog(@"创建t_student表失败:%s", errorMesg);
}
} else {
NSLog(@"打开数据库失败");
}
}
// 全然仿造createTable操作
- (IBAction)insertBtnClicked:(UIButton *)sender
{
for (int i = 0; i<30; i++) {
NSString *name = [NSString stringWithFormat:@"beyond-%d", arc4random()%100];
int age = arc4random()%100;
NSString *sql = [NSString stringWithFormat:@"insert into t_student (name, age) values('%@', %d);", name, age];
char *errorMesg = NULL;
int result = sqlite3_exec(_db, sql.UTF8String, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功加入数据");
} else {
NSLog(@"加入数据失败:%s", errorMesg);
}
}
}
// 方法同上
- (IBAction)deleteBtnClicked:(UIButton *)sender
{
}
// 方法同上
- (IBAction)updateBtnClicked:(UIButton *)sender
{
}
//
- (IBAction)queryBtnClicked:(UIButton *)sender
{
// SQL注入漏洞
/**
登录功能
1.用户输入账号和password
* 账号:123' or 1 = 1 or '' = '
* password:456654679
2.拿到用户输入的账号和password去数据库查询(查询有没有这个用户名和password)
select * from t_user where username = '123' and password = '456';
select * from t_user where username = '123' and password = '456';
*/
// 1.定义sql语句
const char *sql = "select id, name, age from t_student where name = ?;";
// 2.定义一个stmt存放结果集,用于运行静态 SQL 语句并返回它所生成结果的对象
sqlite3_stmt *stmt = NULL;
// 3.检測SQL语句的合法性,參数3是sql语句的长度,仅仅要写-1,会自己主动计算,參数4是statement存放结果集
int result = sqlite3_prepare_v2(_db, sql, -1, &stmt, NULL);
if (result == SQLITE_OK)
{
NSLog(@"查询语句是合法的");
// 设置占位符的内容,參数2 指的是第几个占位符号,注意是从1開始;參数4是占位符的长度,仅仅要写-1,会自己主动计算,
sqlite3_bind_text(stmt, 1, "beyond", -1, NULL);
// 4.step 运行SQL语句,从结果集中取出数据
// int stepResult = sqlite3_step(stmt);
// step的运行结果等于SQLITE_ROW,表示真的查询到一行数据
while (sqlite3_step(stmt) == SQLITE_ROW)
{
// 获得这行相应的数据,结果存放在statement中
// 获得第0列的id
int sid = sqlite3_column_int(stmt, 0);
// 获得第1列的name
const unsigned char *sname = sqlite3_column_text(stmt, 1);
// 获得第2列的age
int sage = sqlite3_column_int(stmt, 2);
NSLog(@"%d %s %d", sid, sname, sage);
}
} else {
NSLog(@"查询语句非合法");
}
}
@end
使用工具类封装
模型
//
// Student.h
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Student : NSObject
// 学号
@property (nonatomic, assign) int ID;
// 姓名
@property (nonatomic, copy) NSString *name;
// 年龄
@property (nonatomic, assign) int age;
@end
工具类StudentDAO
//
// StudentDAO.h
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
// 学生数据的CRUD(增删改查)
#import <Foundation/Foundation.h>
@class Student;
@interface StudentDAO : NSObject
/**
* 加入学生
*
* @param student 须要加入的学生
*/
+ (BOOL)addStudent:(Student *)student;
/**
* 获得全部的学生
*
* @return 数组中装着都是IWStudent模型
*/
+ (NSArray *)students;
/**
* 依据搜索条件获得相应的学生
*
* @param condition 搜索条件
*/
+ (NSArray *)studentsWithCondition:(NSString *)condition;
@end
关键封装的代码
//
// StudentDAO.m
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
//
#import "StudentDAO.h"
#import "Student.h"
#import <sqlite3.h>
@implementation StudentDAO
// 重点~~~~加上static的作用:能保证_db这个变量仅仅被StudentDAO.m内部訪问
static sqlite3 *_db;
// 重点~~~~工具类第一次载入的时候调用initialize方法
+ (void)initialize
{
// 0.获得沙盒中的数据库文件名称
NSString *filename = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"student.sqlite"];
// 1.创建(打开)数据库(假设数据库文件不存在。会自己主动创建)
int result = sqlite3_open(filename.UTF8String, &_db);
if (result == SQLITE_OK) {
NSLog(@"成功打开数据库");
// 2.创表
const char *sql = "create table if not exists t_student (id integer primary key autoincrement, name text, age integer);";
char *errorMesg = NULL;
int result = sqlite3_exec(_db, sql, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功创建t_student表");
} else {
NSLog(@"创建t_student表失败:%s", errorMesg);
}
} else {
NSLog(@"打开数据库失败");
}
for (int i = 0; i<30; i++) {
NSString *name = [NSString stringWithFormat:@"beyond-%d", arc4random()%100];
int age = arc4random()%100;
NSString *sql = [NSString stringWithFormat:@"insert into t_student (name, age) values('%@', %d);", name, age];
char *errorMesg = NULL;
int result = sqlite3_exec(_db, sql.UTF8String, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功加入数据");
} else {
NSLog(@"加入数据失败:%s", errorMesg);
}
}
}
+ (BOOL)addStudent:(Student *)student
{
// Sqlite3中全部的字符串必须用单引號
NSString *sql = [NSString stringWithFormat:@"insert into t_student (name, age) values('%@', %d);", student.name, student.age];
char *errorMesg = NULL;
// 两个NULL代表的是回调方法,此处不须要
int result = sqlite3_exec(_db, sql.UTF8String, NULL, NULL, &errorMesg);
return result == SQLITE_OK;
}
// 返回全部的学生对象组成的数组
+ (NSArray *)students
{
// 0.定义数组
NSMutableArray *students = nil;
// 1.定义sql语句
const char *sql = "select id, name, age from t_student;";
// 2.定义一个stmt存放结果集
sqlite3_stmt *stmt = NULL;
// 3.检測SQL语句的合法性
int result = sqlite3_prepare_v2(_db, sql, -1, &stmt, NULL);
if (result == SQLITE_OK) {
NSLog(@"查询语句是合法的");
students = [NSMutableArray array];
// 4.运行SQL语句,从结果集中取出数据
while (sqlite3_step(stmt) == SQLITE_ROW) { // 真的查询到一行数据
// 获得这行相应的数据
Student *student = [[Student alloc] init];
// 获得第0列的id
student.ID = sqlite3_column_int(stmt, 0);
// 获得第1列的name
const unsigned char *sname = sqlite3_column_text(stmt, 1);
student.name = [NSString stringWithUTF8String:(const char *)sname];
// 获得第2列的age
student.age = sqlite3_column_int(stmt, 2);
// 加入到数组
[students addObject:student];
}
} else {
NSLog(@"查询语句非合法");
}
return students;
}
// 模糊查询
+ (NSArray *)studentsWithCondition:(NSString *)condition
{
// 0.定义数组
NSMutableArray *students = nil;
// 1.定义sql语句 带模糊查询 '%林%'
const char *sql = "select id, name, age from t_student where name like ?
;";
// 2.定义一个stmt存放结果集
sqlite3_stmt *stmt = NULL;
// 3.检測SQL语句的合法性
int result = sqlite3_prepare_v2(_db, sql, -1, &stmt, NULL);
if (result == SQLITE_OK) {
NSLog(@"查询语句是合法的");
students = [NSMutableArray array];
// 填补占位符的内容,%在OC中是keyword,因此转义
NSString *newCondition = [NSString stringWithFormat:@"%%%@%%", condition];
sqlite3_bind_text(stmt, 1, newCondition.UTF8String, -1, NULL);
// 4.运行SQL语句,从结果集中取出数据
while (sqlite3_step(stmt) == SQLITE_ROW) { // 真的查询到一行数据
// 获得这行相应的数据
Student *student = [[Student alloc] init];
// 获得第0列的id
student.ID = sqlite3_column_int(stmt, 0);
// 获得第1列的name
const unsigned char *sname = sqlite3_column_text(stmt, 1);
student.name = [NSString stringWithUTF8String:(const char *)sname];
// 获得第2列的age
student.age = sqlite3_column_int(stmt, 2);
// 加入到数组
[students addObject:student];
}
} else {
NSLog(@"查询语句非法");
}
return students;
}
@end
控制器中使用工具类为tableView提供数据源,而且监听搜索框的模糊查询
//
// ViewController.m
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
//
#import "ViewController.h"
#import "Student.h"
#import "StudentDAO.h"
@interface ViewController ()<UISearchBarDelegate>
// 从数据库中返回的封装好的对象数组,为tableView提供数据源
@property (nonatomic, strong) NSArray *students;
@end
@implementation ViewController
#pragma mark - 懒载入
- (NSArray *)students
{
if (_students == nil) {
_students = [StudentDAO students];
}
return _students;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// 加入一个搜索框,并设置代理
UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
searchBar.delegate = self;
// headView
self.tableView.tableHeaderView = searchBar;
}
#pragma mark - 搜索框代理
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
// 直接覆盖原来的对象数组
self.students = [StudentDAO studentsWithCondition:searchText];
// 刷新表格
[self.tableView reloadData];
}
#pragma mark - tableView代理方法
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.students.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 1.创建cell
static NSString *ID = @"student";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
}
// 2.设置cell的数据
Student *stu = self.students[indexPath.row];
cell.textLabel.text = stu.name;
cell.detailTextLabel.text = [NSString stringWithFormat:@"%d", stu.age];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.view endEditing:YES];
}
@end
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); // 字符串数据
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcHJlX2VtaW5lbnQ=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
//
// ViewController.m
// 1.sqlite3基本操作
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
// #import "ViewController.h"
// 1.导入库,2.加入主头文件
#import <sqlite3.h>
@interface ViewController ()
{
// db代表着整个数据库。db是数据库实例
sqlite3 *_db;
}
@end @implementation ViewController - (void)viewDidLoad
{
[super viewDidLoad];
// 0.获得沙盒中的数据库文件名称
NSString *filename = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"student.sqlite"];
NSLog(@"filePath:%@",filename);
/*
2014-11-02 18:32:38.895 1.sqlite3基本操作[85356:245858] filePath:/Users/juns/Library/Developer/CoreSimulator/Devices/3198E002-E3C9-4523-983E-AC3E1283A654/data/Containers/Data/Application/E1150608-3EB8-4B9D-87AF-33EDF9FB6FF3/Documents/student.sqlite
2014-11-02 18:32:38.896 1.sqlite3基本操作[85356:245858] 成功打开数据库
2014-11-02 18:32:38.897 1.sqlite3基本操作[85356:245858] 成功创建t_student表
*/ // 1.创建(打开)数据库(假设是首次打开,则数据库文件不存在。那么会自己主动创建)
// OC字符串,直接转成C语言字符串,通过 UTF8String方法
int result = sqlite3_open(filename.UTF8String, &_db);
if (result == SQLITE_OK) {
NSLog(@"成功打开数据库"); // 2.创表
const char *sql = "create table if not exists t_student (id integer primary key autoincrement, name text, age integer);";
// 凡是要传地址的,最好先清空,防止出现野指针,C语言中空是NULL
char *errorMesg = NULL;
// 參数3和4是回调时用
int result = sqlite3_exec(_db, sql, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功创建t_student表");
} else {
NSLog(@"创建t_student表失败:%s", errorMesg);
}
} else {
NSLog(@"打开数据库失败");
}
} // 全然仿造createTable操作
- (IBAction)insertBtnClicked:(UIButton *)sender
{
for (int i = 0; i<30; i++) {
NSString *name = [NSString stringWithFormat:@"beyond-%d", arc4random()%100];
int age = arc4random()%100;
NSString *sql = [NSString stringWithFormat:@"insert into t_student (name, age) values('%@', %d);", name, age]; char *errorMesg = NULL;
int result = sqlite3_exec(_db, sql.UTF8String, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功加入数据");
} else {
NSLog(@"加入数据失败:%s", errorMesg);
}
}
}
// 方法同上
- (IBAction)deleteBtnClicked:(UIButton *)sender
{
}
// 方法同上
- (IBAction)updateBtnClicked:(UIButton *)sender
{
}
//
- (IBAction)queryBtnClicked:(UIButton *)sender
{
// SQL注入漏洞 /**
登录功能 1.用户输入账号和password
* 账号:123' or 1 = 1 or '' = '
* password:456654679 2.拿到用户输入的账号和password去数据库查询(查询有没有这个用户名和password)
select * from t_user where username = '123' and password = '456'; select * from t_user where username = '123' and password = '456';
*/ // 1.定义sql语句
const char *sql = "select id, name, age from t_student where name = ?;"; // 2.定义一个stmt存放结果集,用于运行静态 SQL 语句并返回它所生成结果的对象
sqlite3_stmt *stmt = NULL; // 3.检測SQL语句的合法性,參数3是sql语句的长度,仅仅要写-1,会自己主动计算,參数4是statement存放结果集
int result = sqlite3_prepare_v2(_db, sql, -1, &stmt, NULL);
if (result == SQLITE_OK)
{
NSLog(@"查询语句是合法的"); // 设置占位符的内容,參数2 指的是第几个占位符号,注意是从1開始;參数4是占位符的长度,仅仅要写-1,会自己主动计算,
sqlite3_bind_text(stmt, 1, "beyond", -1, NULL); // 4.step 运行SQL语句,从结果集中取出数据
// int stepResult = sqlite3_step(stmt); // step的运行结果等于SQLITE_ROW,表示真的查询到一行数据
while (sqlite3_step(stmt) == SQLITE_ROW)
{
// 获得这行相应的数据,结果存放在statement中 // 获得第0列的id
int sid = sqlite3_column_int(stmt, 0); // 获得第1列的name
const unsigned char *sname = sqlite3_column_text(stmt, 1); // 获得第2列的age
int sage = sqlite3_column_int(stmt, 2); NSLog(@"%d %s %d", sid, sname, sage);
}
} else {
NSLog(@"查询语句非合法");
}
}
@end
//
// Student.h
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
// #import <Foundation/Foundation.h> @interface Student : NSObject
// 学号
@property (nonatomic, assign) int ID;
// 姓名
@property (nonatomic, copy) NSString *name;
// 年龄
@property (nonatomic, assign) int age;
@end
//
// StudentDAO.h
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
// 学生数据的CRUD(增删改查) #import <Foundation/Foundation.h>
@class Student;
@interface StudentDAO : NSObject
/**
* 加入学生
*
* @param student 须要加入的学生
*/
+ (BOOL)addStudent:(Student *)student; /**
* 获得全部的学生
*
* @return 数组中装着都是IWStudent模型
*/
+ (NSArray *)students; /**
* 依据搜索条件获得相应的学生
*
* @param condition 搜索条件
*/
+ (NSArray *)studentsWithCondition:(NSString *)condition;
@end
//
// StudentDAO.m
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
// #import "StudentDAO.h"
#import "Student.h"
#import <sqlite3.h>
@implementation StudentDAO // 重点~~~~加上static的作用:能保证_db这个变量仅仅被StudentDAO.m内部訪问
static sqlite3 *_db;
// 重点~~~~工具类第一次载入的时候调用initialize方法
+ (void)initialize
{
// 0.获得沙盒中的数据库文件名称
NSString *filename = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"student.sqlite"]; // 1.创建(打开)数据库(假设数据库文件不存在。会自己主动创建)
int result = sqlite3_open(filename.UTF8String, &_db);
if (result == SQLITE_OK) {
NSLog(@"成功打开数据库"); // 2.创表
const char *sql = "create table if not exists t_student (id integer primary key autoincrement, name text, age integer);";
char *errorMesg = NULL;
int result = sqlite3_exec(_db, sql, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功创建t_student表");
} else {
NSLog(@"创建t_student表失败:%s", errorMesg);
}
} else {
NSLog(@"打开数据库失败");
} for (int i = 0; i<30; i++) {
NSString *name = [NSString stringWithFormat:@"beyond-%d", arc4random()%100];
int age = arc4random()%100;
NSString *sql = [NSString stringWithFormat:@"insert into t_student (name, age) values('%@', %d);", name, age]; char *errorMesg = NULL;
int result = sqlite3_exec(_db, sql.UTF8String, NULL, NULL, &errorMesg);
if (result == SQLITE_OK) {
NSLog(@"成功加入数据");
} else {
NSLog(@"加入数据失败:%s", errorMesg);
}
} } + (BOOL)addStudent:(Student *)student
{
// Sqlite3中全部的字符串必须用单引號
NSString *sql = [NSString stringWithFormat:@"insert into t_student (name, age) values('%@', %d);", student.name, student.age]; char *errorMesg = NULL;
// 两个NULL代表的是回调方法,此处不须要
int result = sqlite3_exec(_db, sql.UTF8String, NULL, NULL, &errorMesg); return result == SQLITE_OK;
}
// 返回全部的学生对象组成的数组
+ (NSArray *)students
{
// 0.定义数组
NSMutableArray *students = nil; // 1.定义sql语句
const char *sql = "select id, name, age from t_student;"; // 2.定义一个stmt存放结果集
sqlite3_stmt *stmt = NULL; // 3.检測SQL语句的合法性
int result = sqlite3_prepare_v2(_db, sql, -1, &stmt, NULL);
if (result == SQLITE_OK) {
NSLog(@"查询语句是合法的");
students = [NSMutableArray array]; // 4.运行SQL语句,从结果集中取出数据
while (sqlite3_step(stmt) == SQLITE_ROW) { // 真的查询到一行数据
// 获得这行相应的数据 Student *student = [[Student alloc] init]; // 获得第0列的id
student.ID = sqlite3_column_int(stmt, 0); // 获得第1列的name
const unsigned char *sname = sqlite3_column_text(stmt, 1);
student.name = [NSString stringWithUTF8String:(const char *)sname]; // 获得第2列的age
student.age = sqlite3_column_int(stmt, 2); // 加入到数组
[students addObject:student];
}
} else {
NSLog(@"查询语句非合法");
} return students;
}
// 模糊查询
+ (NSArray *)studentsWithCondition:(NSString *)condition
{
// 0.定义数组
NSMutableArray *students = nil; // 1.定义sql语句 带模糊查询 '%林%'
const char *sql = "select id, name, age from t_student where name like ? ;"; // 2.定义一个stmt存放结果集
sqlite3_stmt *stmt = NULL; // 3.检測SQL语句的合法性
int result = sqlite3_prepare_v2(_db, sql, -1, &stmt, NULL);
if (result == SQLITE_OK) {
NSLog(@"查询语句是合法的");
students = [NSMutableArray array]; // 填补占位符的内容,%在OC中是keyword,因此转义
NSString *newCondition = [NSString stringWithFormat:@"%%%@%%", condition];
sqlite3_bind_text(stmt, 1, newCondition.UTF8String, -1, NULL); // 4.运行SQL语句,从结果集中取出数据
while (sqlite3_step(stmt) == SQLITE_ROW) { // 真的查询到一行数据
// 获得这行相应的数据 Student *student = [[Student alloc] init]; // 获得第0列的id
student.ID = sqlite3_column_int(stmt, 0); // 获得第1列的name
const unsigned char *sname = sqlite3_column_text(stmt, 1);
student.name = [NSString stringWithUTF8String:(const char *)sname]; // 获得第2列的age
student.age = sqlite3_column_int(stmt, 2); // 加入到数组
[students addObject:student];
}
} else {
NSLog(@"查询语句非法");
} return students;
}
@end
//
// ViewController.m
// 2_数据库工具类封装
//
// Created by xss on 14-11-2.
// Copyright (c) 2014年 beyond. All rights reserved.
// #import "ViewController.h"
#import "Student.h"
#import "StudentDAO.h"
@interface ViewController ()<UISearchBarDelegate>
// 从数据库中返回的封装好的对象数组,为tableView提供数据源
@property (nonatomic, strong) NSArray *students;
@end @implementation ViewController #pragma mark - 懒载入
- (NSArray *)students
{
if (_students == nil) {
_students = [StudentDAO students];
}
return _students;
} - (void)viewDidLoad
{
[super viewDidLoad];
// 加入一个搜索框,并设置代理
UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
searchBar.delegate = self;
// headView
self.tableView.tableHeaderView = searchBar;
} #pragma mark - 搜索框代理
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
// 直接覆盖原来的对象数组
self.students = [StudentDAO studentsWithCondition:searchText];
// 刷新表格
[self.tableView reloadData];
} #pragma mark - tableView代理方法
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.students.count;
} - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 1.创建cell
static NSString *ID = @"student";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
} // 2.设置cell的数据
Student *stu = self.students[indexPath.row];
cell.textLabel.text = stu.name;
cell.detailTextLabel.text = [NSString stringWithFormat:@"%d", stu.age]; return cell;
} - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.view endEditing:YES];
}
@end
版权声明:本文博主原创文章,博客,未经同意不得转载。
iOS_数据库3_sqlite3基本操作的更多相关文章
- mysql数据库的基本操作
mysql数据库的基本操作dos命令启动mysql服务:net start mysql启动数据库: mysql -uroot -p查看所有的数据库:show databases:新建数据库:creat ...
- MySQL(一) 数据表数据库的基本操作
序言 这类文章,记录我看<MySQL5.6从零开始学>这本书的过程,将自己觉得重要的东西记录一下,并有可能帮助到你们,在写的博文前几篇度会非常基础,只要动手敲,跟着我写的例子全部实现一遍, ...
- PostgreSQL自学笔记:3 数据库的基本操作
3 数据库的基本操作 3.1 创建数据库 3.1.1 使用对象浏览器创建数据库 [Server] -> PostgreSQL 9.6 -> 数据库,右击 -> 创建 通常: 数据库: ...
- ThinkPhp框架对“数据库”的基本操作
框架有时会用到数据库的内容,在"ThinkPhp框架知识"的那篇随笔中提到过,现在这篇随笔详细的描述下. 数据库的操作,无疑就是连接数据库,然后对数据库中的表进行各种查询,然后就是 ...
- mysql 数据库(二)数据库的基本操作
mysql 数据库(二)数据库的基本操作 用户管理,添加权限,创建,显示,使用数据库 1 显示数据库:show databases; 默认数据库: mysql - 用户权限相关数据 test - 用于 ...
- MySQL:数据库的基本操作
第二篇.数据库的基本操作 一.创建数据库 附:创建数据库并不意味输入数据在这个数据库中,只有用切换数据库才可以输数据到这个数据库中. 1.创建数据库 格式:create database数据库名字 [ ...
- 通过sql语句对MySql数据库的基本操作
一.数据库的基本操作 CREATE DATABASE mybookstore; DROP DATABASE mybookstore; 二.表的基本操作 1.创建表 insert into 表名(字段名 ...
- TP框架对数据库的基本操作
数据库的操作,无疑就是连接数据库,然后对数据库中的表进行各种查询,然后就是对数据的增删改的操作,一步步的讲述一下框架对数据库的操作 想要操作数据库,第一步必然是要:链接数据库 一.链接数据库 (1)找 ...
- MySQL数据库起步 关于数据库的基本操作(更新中...)
mysql的基本操作 连接指定的服务器(需要服务器开启3306端口) mysql -h ip地址 -P 端口号 -u 账号 -p 密码 删除游客模式 mysql -h ip地址 -P 端口号 -u 账 ...
随机推荐
- EA强大功能之代码凝视
前面讲了EA怎样方便我们生成代码,这次讲一下,怎样生成具体的凝视. 1.文件表头凝视 (1)点击工具----选项 在常规项里改动作者: 在代码project中改动代码project的默认语言. (2) ...
- GB2312引进和使用的字体
一个:先上图看到的结果,下面的屏幕截图android在测试的结果"SD卡测试".."GPS测试"和其他字符24x24字体进来. 二: 1)简单介绍 ...
- LeetCode_Merge Two Sorted Lists
一.题目 Merge Two Sorted Lists My Submissions Merge two sorted linked lists and return it as a new list ...
- C语言文件操作之fgets()
来说一说fgets(..)函数. 原型 char * fgets(char * s, int n,FILE *stream); 參数: s: 字符型指针, ...
- jquery在元素上收购事件
jquery的给元素绑定的事件能够用data方法取出来 通过$(element).data("events")来获取 // 比方给一个button绑定两个click事件 $(&qu ...
- c++一些语法模板
函数模板特 template <class T> int compare(T v1,T v2) { if(v1<v2) return -1; else if(v1>v2) re ...
- js:进一步关闭(范围:下一个)
function fn1(){ //创建一个数组 var fns = new Array(); //i这个变量是保存在fn1这个作用域中 for(var i=0;i<10;i++ ...
- Linq 数据操作,两个数组求差、交集、并集
int[] a = { 1, 2, 3, 4, 5, 6, 7 }; int[] b = { 4, 5, 6, 7, 8, 9, 10 }; int[] c = { 1, 2, 3, 3, 4, 1, ...
- hdu1540(线段树)
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=1540 题意:是一条线上的点,D x是破坏这个点,Q x是表示查询以x所在的最长的连续的点的个数,R是恢 ...
- 22个值得收藏的android开源码-UI篇
本文介绍了android开发人员中比較热门的开源码,这些代码绝大多数能够直接应用到项目中. FileBrowserView 一个强大的文件选择控件.界面比較美丽,使用也非常easy. 特点:能够自己定 ...