#pragma mark -- 数库

- (void)createDatabase{

//路径

NSString *path = [NSString stringWithFormat:@"%@/Documents/maxueshan.db",NSHomeDirectory()];

//创建

_database = [[FMDatabase alloc]initWithPath:path];

//打开

[_database open];

NSLog(@"%@",path);

}

//重写析构方法   ,  不能写 [super dealloc]

- (void)dealloc{

//关闭数据库

[_database close];

}

#pragma mark -- 创建表格

- (void)createTable{

NSString *sql = @"create table if not exists Student(stuName text,stuAge text, stuSex text)";

BOOL isSuccess = [_database executeUpdate:sql];

if (isSuccess) {

NSLog(@"table表格创建成功");

}else {

NSLog(@"table表格创建失败");

}

}

//增

- (void)insertDataWithArray:(NSArray *)array{

if (array.count == 0) {

//数组为空,没有模型

return;

}

//1.SQL语句  拼接

NSString *sql = @"insert into Student values(?,?,?)";

//2.遍历数组

for (StudentModel *model in array) {

//

[_database executeUpdate:sql,model.stuName,model.stuAge,model.stuSex];

}

}

//删

- (void)deleteDataWithArray:(NSArray *)array{

if (array.count == 0) {

return ;

}

NSString *sql = @"delete from Student where stuName=? and stuAge=? and stuSex=?";

for (StudentModel *model in array) {

[_database executeUpdate:sql,model.stuName,model.stuAge,model.stuSex];

}

}

//改

- (BOOL)updateDataWithSourceModle:(StudentModel *)sourceModel andNewModel:(StudentModel *)newModel{

if (sourceModel && newModel) {

//两个模型都不为空时,才执行 数据的修改

NSString *sql = @"update Student set stuName=? , set stuAge=? , set stuSex=? where stuName=? and stuAge=? and stuSex=?";

BOOL isSuccess = [_database executeUpdate:sql,newModel.stuName,newModel.stuAge,newModel.stuSex,sourceModel.stuName,sourceModel.stuAge,sourceModel.stuSex];

return isSuccess;

}

return NO;

}

//查

- (NSArray *)selectAllDatas{

//1.数组,接收模型

NSMutableArray *dataArr = [NSMutableArray array];

//2.sql 语句

NSString *sql = @"select *from Student";

//3.查询

FMResultSet *set = [_database executeQuery:sql];

//4.遍历,分装模型

while ([set next]) {

NSString *name = [set stringForColumn:@"stuName"];

NSString *age  = [set stringForColumn:@"stuAge"];

NSString *sex  = [set stringForColumn:@"stuSex"];

NSDictionary *dic = @{@"stuName":name,@"stuAge":age,@"stuSex":sex};

StudentModel *model = [StudentModel createModelWithDic:dic];

[dataArr addObject:model];

}

return dataArr;

}

//姓名

- (NSArray *)selectForName:(NSString *)name {

if (name.length == 0) {

return nil;

}

NSMutableArray *dataArr = [NSMutableArray array];

NSString *sql = @"select * form Student where stuName=? ";

FMResultSet *set = [_database executeQuery:sql,name];

while ([set next]) {

NSString *name = [set stringForColumn:@"stuName"];

NSString *age = [set stringForColumn:@"stuAge"];

NSString *sex = [set stringForColumn:@"stuSex"];

NSDictionary *dic = @{@"stuName":name,@"stuAge":age,@"stuSex":sex};

StudentModel *model = [StudentModel createModelWithDic:dic];

[dataArr addObject:model];

}

return dataArr;

}

FMDB----SQL----数据库的更多相关文章

  1. iOS——使用FMDB进行数据库操作(转载)

    iOS 使用FMDB进行数据库操作 https://github.com/ccgus/fmdb [摘要]本文介绍iOS 使用FMDB进行数据库操作,并提供详细的示例代码供参考. FMDB 使用方法 A ...

  2. KTV项目 SQL数据库的应用 结合C#应用窗体

    五道口北大青鸟校区 KTV项目 指导老师:袁玉明 歌曲播放原理 SQL数据库关系图 C#解决方案类图 第一步:创建数据库连接方法和打开方法和关闭方法! public class DBHelper { ...

  3. jquery autocomplete实现读取sql数据库自动补全TextBox

    转自我本良人 原文 jquery autocomplete实现读取sql数据库自动补全TextBox 项目需要这样子一个功能,其他部门提的意见,只好去实现了哦,搞了好久才弄出来,分享一下. 1.前台页 ...

  4. SQL数据库

    SQL是Structured Query Language(结构化查询语言)的缩写.SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言.在使用它时,只需要发出“做什么”的命令,“怎么做” ...

  5. 基于Qt5.5.0的sql数据库、SDK_tts文本语音朗读的CET四六级单词背诵系统软件的编写V1.0

    作者:小波 QQ:463431476 请关注我的博客园:http://www.cnblogs.com/xiaobo-Linux/ 我的第二款软件:CET四六级单词背诵软件.基于QT5.5.0.sql数 ...

  6. matlab连接sql数据库

    最近项目还涉及到matlab连接数据库,下面我就记录如何进行配置使得matlab能够连接sql数据库.由于最近工程做的多一些,所以分享的都在工程配置上,当初为了这些配置可是反复卸载与重装,算法其实也有 ...

  7. SQL SERVER 2008配置Database Mail –用SQL 数据库发邮件

    SQL SERVER 2008配置Database Mail –用SQL  数据库发邮件 https://blogs.msdn.microsoft.com/apgcdsd/2011/06/28/sql ...

  8. Eclipse连接到My sql数据库之前操作

    Eclipse连接到My sql数据库之前操作 1:首先是安装My sql数据库(为了减少你的麻烦,按照下面的连接,下载即可)百度云链接:http://pan.baidu.com/s/1mitWmbm ...

  9. Eclipse连接到My sql数据库的操作总结/配置数据库驱动

    Eclipse连接到MYSQL数据库的操作 (自己亲测,开始学习Eclipse(我的Eclipse版本是4.5.2,Jdbc驱动器的jar包版本是5.1.7,亲测可以使用)连接到数据库的时候,发现网上 ...

  10. 【C#】SQL数据库助手类2.0(自用)

    using System; using System.Collections.Generic; using System.Configuration; using System.Data; using ...

随机推荐

  1. 基于候选区域的深度学习目标检测算法R-CNN,Fast R-CNN,Faster R-CNN

    参考文献 [1]Rich feature hierarchies for accurate object detection and semantic segmentation [2]Fast R-C ...

  2. Win7无法访问Windows共享文件夹

    解决方法如下 On the Windows 7 machine: Run secpol.msc Drill down through Local Policies | Security Options ...

  3. #pragma execution_character_set("utf-8")

    VC2010增加了“#pragma execution_character_set("utf-8")”,指示char的执行字符集是UTF-8编码. VS2010 设置 字符编码: ...

  4. Python之tuple的创建以及使用

    tuple又是一种有序列表,它与list只有两种不同:1.创建后不能更改.2.创建时得用() 在使用tuple的时候我们需要进行那个添加一个“,” 如果不加的话就是一个整数. 但是tuple作为一个不 ...

  5. cocos2dx帧动画

    //帧动画的创建 //方式一,通过多张图片来创建 auto sprite1 = Sprite::create("grossini_dance_05.png"); sprite1-& ...

  6. JS对表单的操作

    JS对表单中的style的操作,包括复选框技术 废话不多说直接上文件代码!!! 功能:全选\反选,鼠标监测变颜色 <html> <head> <meta charset= ...

  7. python中list的使用

    1.list(列表)是一种有序的集合,可以随时添加.修改.删除其中的元素. 举例:listClassName = ['Jack','Tom','Mark'] 列表可以根据索引获取元素,如:listCl ...

  8. centos中JDK版本冲突的问题

    在centos环境下,我JDK版本安装了jdk6,jdk7.系统还自带了一个JDK7. 我在查看JDK版本是,发现不是我在/etc/profile中配置的. 1:which java 查看Java的命 ...

  9. Mysql--连接查询

    内连接查询 意义:找到表和表之间的关系或者是桥梁.连接查询是查询两个或者两个以上的表时使用的. JOIN|CROSS JOIN| INNER JOIN    通过ON  连接条件(这三个方式都行)一般 ...

  10. JaVA web服务器配置

    1:第一是下载好Eclipse开发工具,这里不做叙述,自行下载安装. 2:使用Eclipse开发WEB项目,启动Eclipse,选择File--->new --->other---> ...