IOS开发(94)之SQLite数据库
sqlite是mysql的简化版,更多的运用与移动设备或小型设备上。sqlite的优点是具有可移植性,它不需要服务器就能运行,同时,它也存在一些缺陷,首先,没有提供简单的创建方式,必须手工创建数据库,其次,sqlite没有面向对象接口,必须使用依赖于c语言代码的api。相对于oc,这套api既不那么优雅,也更难使用。当相比于用文件进行存储,还是更推荐使用sqlite进行数据存储。
下面来看下如何使用sqlite
工程目录如下:
首先建立一个single view application工程,命名为sqlite3test,然后打开viewcontroller.xib文件,布局如下,并设置三个uitextfield的tag分别为1、2、3
设置tag的地方在属性选择器中(xcode右边)
然后在viewcontroller.h文件中声明如下:
[cpp]
<span style="font-family:comic sans ms;font-size:18px;">#import <uikit/uikit.h>
@interface viewcontroller : uiviewcontroller
@property(copy,nonatomic) nsstring *databasefilepath;
//这个方法定义的是当应用程序退到后台时将执行的方法,按下home键执行(通知中心来调度)
-(void)applicationwillresignactive:(nsnotification *)notification;
//当通过键盘在uitextfield中输入完毕后,点击屏幕空白区域关闭键盘的操作
-(ibaction)backgroundtapped:(id)sender;
@end</span>
接下来看下.m文件的具体实现,就不一一介绍了,在代码中会有注释
在开始写代码前,要导入sqlite支持包 libsqlite3.dylib(具体做法就不详述了)
上代码:
[cpp]
#import "viewcontroller.h"
#import "sqlite3.h"
//数据库文件的名字
#define kdatabasename @"database.sqlite3"
@interfaceviewcontroller ()
@end
@implementation viewcontroller
@synthesize databasefilepath;
- (void)viewdidload
{
[superviewdidload];
nsarray *path = nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes);
nsstring *documentdirectory = [path objectatindex:0];
//指定数据库文件的路径
self.databasefilepath = [documentdirectory stringbyappendingpathcomponent:kdatabasename];
//打开数据库
sqlite3 *database;
//[self.databasefilepath utf8string];将oc字符串装换成c字符串
if (sqlite3_open([self.databasefilepathutf8string], &database) != sqlite_ok) {
//关闭数据库
sqlite3_close(database);
nsassert(0,@"数据库打开失败");
}
//创建表格
nsstring *createsql = @"create table if not exists student (tag integer primary key ,field_data text);";
//若发生错误,则错误信息存在该字符串中
char *errormsg;
//sqlite3_exec这个方法可以执行那些没有返回结果的操作,例如创建、插入、删除等,这个函数包含了sqlite3_prepare这个函数的操作,目的是将utf-8格式的sql语句转换为编译后的语句
if (sqlite3_exec(database, [createsql utf8string], null, null, &errormsg) != sqlite_ok) {
sqlite3_close(database);
nsassert(0,@"创建表错误:%s", errormsg);
}
//查询数据库
nsstring *querysql = @"select * from student order by tag";
//语句句柄
sqlite3_stmt *statament;
//sqlite3_prepare_v2的作用是将utf-8格式的sql语句转换为编译后的语句,并返回指向该语句的指针
if (sqlite3_prepare_v2(database, [querysql utf8string], -1, &statament, nil) == sqlite_ok) {
//sqlite3_step的作用是在编译后的语句中向前移动一条记录,sqlite_row代表一行
while (sqlite3_step(statament) == sqlite_row) {
//返回当前这条记录中的一个int类型字段的值,下面sqlite3_column_text返回一个字符串类型的值,后面的数字对应每一列
int tag = sqlite3_column_int(statament, 1);
char *rowdata = (char *)sqlite3_column_text(statament, 2);
//如果要得到一个nsstring字符串,可以采用如下方法
//nsstring *str = [nsstring stringwithutf8string:(char *)sqlite3_column_text(statament, 1)];
//通过tag得到ui控件,类似android中的findviewbyid(id)
uitextfield *textfield = (uitextfield *)[self.viewviewwithtag:tag];
//[[nsstring alloc]initwithutf8string:rowdata] 将c字符串转换成oc字符串
textfield.text = [[nsstringalloc]initwithutf8string:rowdata];
}
//删除编译后的语句
sqlite3_finalize(statament);
}
sqlite3_close(database);
//注册通知,当程序将要退到后台时执行applicationwillresignactive方法(在.h中定义)
uiapplication *application = [uiapplicationsharedapplication];
[[nsnotificationcenterdefaultcenter] addobserver:selfselector:@selector(applicationwillresignactive:) name:uiapplicationwillresignactivenotificationobject:application];
}
- (void)viewdidunload
{
[superviewdidunload];
// release any retained subviews of the main view.
}
- (bool)shouldautorotatetointerfaceorientation:(uiinterfaceorientation)interfaceorientation
{
return (interfaceorientation != uiinterfaceorientationportraitupsidedown);
}
//按下home键程序将要进入后台前保存uitextfield中的数据
-(void)applicationwillresignactive:(nsnotification *)notification
{
sqlite3 *database;
if (sqlite3_open([self.databasefilepathutf8string], &database) != sqlite_ok) {
nsassert(0,@"打开数据库错误");
sqlite3_close(database);
}
for (int i = 1; i <= 3; i++) {
uitextfield *textfield = (uitextfield *)[self.viewviewwithtag:i];
//插入数据
char *update = "insert or replace into student values (?,?)";
sqlite3_stmt *statement;
if (sqlite3_prepare_v2(database, update, -1, &statement, nil) == sqlite_ok) {
//将值保存到指定的列
sqlite3_bind_int(statement, 1, i);
//第四个参数代表第三个参数中需要传递的长度。对于c字符串来说,-1表示传递全部字符串。第五个参数是一个回调函数,比如执行后做内存清除工作。
sqlite3_bind_text(statement, 2, [textfield.textutf8string], -1, null);
}
char *errormsg = null;
//sqlite_done代表更新数据库是否完成
if (sqlite3_step(statement) != sqlite_done) {
nsassert(0,@"更新数据出错:%s",errormsg);
}
sqlite3_finalize(statement);
}
sqlite3_close(database);
}
-(ibaction)backgroundtapped:(id)sender
{
/*当通过键盘在uitextfield中输入完毕后,点击屏幕空白区域关闭键盘的操作
设置步骤是打开.xib文件选中整个视图,然后将属性选择器中的class由uiview改成uicontrol,然后在事件选取器中选择touch down事件并连线到.h文件中的backgroundtapped方法
*/
for (int i = 1; i <= 3; i ++) {
uitextfield *textfield = (uitextfield *)[self.viewviewwithtag:i];
[textfield resignfirstresponder];
}
}
@end
最后运行效果如下,输入信息后按下home键,然后再进入应用,可以看到数据在每次退出前都保存了,再次进入则从sqlite数据库查询保存的数据并显示在界面上
上一篇: 注意:刷关键词点击获排名极易引起K站
下一篇: 一段ASP单页显示文件夹下所有图片的代码