简介iOS开发中应用SQLite的模糊查询和常用函数
sqlite模糊查询
一、示例
说明:本文简单示例了sqlite的模糊查询
1.新建一个继承自nsobject的模型
该类中的代码:
//
// yyperson.h
// 03-模糊查询
//
// created by apple on 14-7-27.
// copyright (c) 2014年 wendingding. all rights reserved.
//
#import <foundation/foundation.h>
@interface yyperson : nsobject
@property (nonatomic, assign) int id;
@property (nonatomic, copy) nsstring *name;
@property (nonatomic, assign) int age;
@end
2.新建一个工具类,用来管理模型
工具类中的代码设计如下:
yypersontool.h文件
//
// yypersontool.h
// 03-模糊查询
//
// created by apple on 14-7-27.
// copyright (c) 2014年 wendingding. all rights reserved.
//
#import <foundation/foundation.h>
@class yyperson;
@interface yypersontool : nsobject
/**
* 保存一个联系人
*/
+ (void)save:( yyperson*)person;
/**
* 查询所有的联系人
*/
+ (nsarray *)query;
+ (nsarray *)querywithcondition:(nsstring *)condition;
@end
yypersontool.m文件
//
// yypersontool.m
// 03-模糊查询
//
// created by apple on 14-7-27.
// copyright (c) 2014年 wendingding. all rights reserved.
//
#import "yypersontool.h"
#import "yyperson.h"
#import <sqlite3.h>
@interface yypersontool ()
//@property(nonatomic,assign)sqlite3 *db;
@end
@implementation yypersontool
static sqlite3 *_db;
//首先需要有数据库
+(void)initialize
{
//获得数据库文件的路径
nsstring *doc=[nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes) lastobject];
nsstring *filename=[doc stringbyappendingpathcomponent:@"person.sqlite"];
//将oc字符串转换为c语言的字符串
const char *cfilename=filename.utf8string;
//1.打开数据库文件(如果数据库文件不存在,那么该函数会自动创建数据库文件)
int result = sqlite3_open(cfilename, &_db);
if (result==sqlite_ok) { //打开成功
nslog(@"成功打开数据库");
//2.创建表
const char *sql="create table if not exists t_person (id integer primary key autoincrement,name text not null,age integer not null);";
char *errmsg=null;
result = sqlite3_exec(_db, sql, null, null, &errmsg);
if (result==sqlite_ok) {
nslog(@"创表成功");
}else
{
printf("创表失败---%s",errmsg);
}
}else
{
nslog(@"打开数据库失败");
}
}
//保存一条数据
+(void)save:(yyperson *)person
{
//1.拼接sql语句
nsstring *sql=[nsstring stringwithformat:@"insert into t_person (name,age) values ('%@',%d);",person.name,person.age];
//2.执行sql语句
char *errmsg=null;
sqlite3_exec(_db, sql.utf8string, null, null, &errmsg);
if (errmsg) {//如果有错误信息
nslog(@"插入数据失败--%s",errmsg);
}else
{
nslog(@"插入数据成功");
}
}
+(nsarray *)query
{
return [self querywithcondition:@""];
}
//模糊查询
+(nsarray *)querywithcondition:(nsstring *)condition
{
//数组,用来存放所有查询到的联系人
nsmutablearray *persons=nil;
/*
[nsstring stringwithformat:@"select id, name, age from t_person where name like '%%%@%%' order by age asc;", condition];
nsstring *nssql=[nsstring stringwithformat:@"select id,name,age from t_person where name=%@;",condition];
*/
nsstring *nssql=[nsstring stringwithformat:@"select id,name,age from t_person where name like '%%%@%%' order by age asc;",condition];
nslog(@"%@",nssql);
const char *sql=nssql.utf8string;
sqlite3_stmt *stmt=null;
//进行查询前的准备工作
if (sqlite3_prepare_v2(_db, sql, -1, &stmt, null)==sqlite_ok) {//sql语句没有问题
nslog(@"查询语句没有问题");
persons=[nsmutablearray array];
//每调用一次sqlite3_step函数,stmt就会指向下一条记录
while (sqlite3_step(stmt)==sqlite_row) {//找到一条记录
//取出数据
//(1)取出第0列字段的值(int类型的值)
int id=sqlite3_column_int(stmt, 0);
//(2)取出第1列字段的值(text类型的值)
const unsigned char *name=sqlite3_column_text(stmt, 1);
//(3)取出第2列字段的值(int类型的值)
int age=sqlite3_column_int(stmt, 2);
yyperson *p=[[yyperson alloc]init];
p.id=id;
p.name=[nsstring stringwithutf8string:(const char *)name];
p.age=age;
// nslog(@"%@",p.name);
[persons addobject:p];
// nslog(@"haha%@",persons);
}
}else
{
nslog(@"查询语句有问题");
}
//nslog(@"haha%@",persons);
return persons;
}
@end
3.在storyboard中,删除原有的控制器,放一个导航控制器和uitableviewcontroller控制器,并关联
在代码中,让主控制器直接继承自uitableviewcontroller
代码设计如下:
yyviewcontroller.m文件
//
// yyviewcontroller.m
// 03-模糊查询
//
// created by apple on 14-7-27.
// copyright (c) 2014年 wendingding. all rights reserved.
//
#import "yyviewcontroller.h"
#import "yyperson.h"
#import "yypersontool.h"
@interface yyviewcontroller ()<uisearchbardelegate>
//添加一个数组,用来保存person
@property(nonatomic,strong)nsarray *persons;
@end
@implementation yyviewcontroller
#pragma mark-懒加载
-(nsarray *)persons
{
if (_persons==nil) {
_persons=[yypersontool query];
}
return _persons;
}
//1.在初始化方法中添加一个搜索框
- (void)viewdidload
{
[super viewdidload];
//设置搜索框
uisearchbar *search=[[uisearchbar alloc]init];
search.frame=cgrectmake(0, 0, 300, 44);
search.delegate=self;
self.navigationitem.titleview=search;
}
//2.设置tableview的数据
//设置有多少行数据
-(nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section
{
// return 10;
return self.persons.count;
}
-(uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath
{
//1.去缓存中取cll,若没有则自己创建并标记
static nsstring *id=@"id";
uitableviewcell *cell=[tableview dequeuereusablecellwithidentifier:id];
if (cell==nil) {
cell=[[uitableviewcell alloc]initwithstyle:uitableviewcellstylesubtitle reuseidentifier:id];
}
//2.设置每个cell的数据
//先取出数据模型
yyperson *person=self.persons[indexpath.row];
//设置这个cell的姓名(name)和年龄
cell.textlabel.text=person.name;
cell.detailtextlabel.text=[nsstring stringwithformat:@"年龄 %d",person.age];
//3.返回cell
return cell;
}
- (ibaction)add:(uibarbuttonitem *)sender {
// 初始化一些假数据
nsarray *names = @[@"西门抽血", @"西门抽筋", @"西门抽风", @"西门吹雪", @"东门抽血", @"东门抽筋", @"东门抽风", @"东门吹雪", @"北门抽血", @"北门抽筋", @"南门抽风", @"南门吹雪"];
for (int i = 0; i<20; i++) {
yyperson *p = [[yyperson alloc] init];
p.name = [nsstring stringwithformat:@"%@-%d", names[arc4random_uniform(names.count)], arc4random_uniform(100)];
p.age = arc4random_uniform(20) + 20;
[yypersontool save:p];
}
}
#pragma mark-搜索框的代理方法
-(void)searchbar:(uisearchbar *)searchbar textdidchange:(nsstring *)searchtext
{
self.persons=[yypersontool querywithcondition:searchtext];
//刷新表格
[self.tableview reloaddata];
[searchbar resignfirstresponder];
}
@end
实现效果:
二、简单说明
关于: nsstring *nssql=[nsstring stringwithformat:@"select id,name,age from t_person where name like '%%%@%%' order by age asc;",condition];
注意:name like ‘西门',相当于是name = ‘西门'。
name like ‘%西%',为模二、简单说明
关于: nsstring *nssql=[nsstring stringwithformat:@"select id,name,age from t_person where name like '%%%@%%' order by age asc;",condition];
注意:name like ‘西门',相当于是name = ‘西门'。
name like ‘%西%',为模糊搜索,搜索字符串中间包含了'西',左边可以为任意字符串,右边可以为任意字符串,的字符串。
但是在 stringwithformat:中%是转义字符,两个%才表示一个%。
打印查看:糊搜索,搜索字符串中间包含了'西',左边可以为任意字符串,右边可以为任意字符串,的字符串。
但是在 stringwithformat:中%是转义字符,两个%才表示一个%。
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开始
上一篇: 保护眼睛吃什么,可以吃什么