iOS UI 18 数据库

//

//  RootViewController.m

//  Ui - 18 数据库

//

//  Created by dllo on 15/12/2.

//  Copyright (c) 2015 dllo. All rights reserved.

//


#import "RootViewController.h"

#import "DataBasehandle.h"

#import "Student.h"

@interface RootViewController ()

@property (retain, nonatomic) IBOutlet UIButton *button;

@property (retain, nonatomic) IBOutlet UIButton *button1;

@property (retain, nonatomic) IBOutlet UIButton *button2;

@property (retain, nonatomic) IBOutlet UIButton *button3;

@property (retain, nonatomic) IBOutlet UIButton *insert;

@property (retain, nonatomic) IBOutlet UIButton *updat;

@property (retain, nonatomic) IBOutlet UIButton *deleteda;

@property (retain, nonatomic) IBOutlet UIButton *button4;

@property (retain, nonatomic) IBOutlet UIButton *button5;


@end


@implementation RootViewController




- (void)viewDidLoad {

    [super viewDidLoad];

    NSLog(@"%@",NSHomeDirectory());

    

    

    

    // Do any additional setup after loading the view from its nib.

}

//打开数据库

- (IBAction)button:(id)sender {

    

    [[DataBasehandle sharedDatabase] openDB];

    

    

    

}

//关闭数据库

- (IBAction)button1:(id)sender {

    

    [[DataBasehandle sharedDatabase] closeDB];

}

//创建表单

- (IBAction)button2:(id)sender {

    

     [[DataBasehandle sharedDatabase] createTable];

    

    

}

//删除表单

- (IBAction)button3:(id)sender {

    

     [[DataBasehandle sharedDatabase] deleteTable];

    

}

//插入数据

- (IBAction)insert:(id)sender {

    

    Student *stu = [[Student alloc]init];

    stu.name = @"dfsa";

    stu.sex = @"fdsf";

    stu.age = 1;

      [[DataBasehandle sharedDatabase] insertDataWithStudent:stu];

    

}

//修改数据

- (IBAction)updat:(id)sender {

    

    Student *stu = [[Student alloc]init];

    stu.name = @"小平好帅";

     stu.sex = @"";

    stu.age = 100;

     [[DataBasehandle sharedDatabase] updataWithNumber:4 Student:stu];

    

}

//删除数据

- (IBAction)deleteda:(id)sender {

    

    

    [[DataBasehandle sharedDatabase] deleteDataWithNumber:2];

    

    

    

}

//查询所有数据

- (IBAction)button4:(id)sender {

    NSMutableArray *stuArr = [[DataBasehandle sharedDatabase] selectAllStudent];

    for (Student *stu in stuArr) {

        NSLog(@"%@ %@ %ld", stu.name, stu.sex, stu.age);

    }

    

    

}

- (IBAction)button5:(id)sender {

    NSMutableArray *stuArr = [[DataBasehandle sharedDatabase]selectBySexOfStudent:@"" name:@"小平好帅"];

    for (Student *stu in stuArr) {

        NSLog(@"%@ %@ %ld", stu.name, stu.sex, stu.age);

    }

}




- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


/*

#pragma mark - Navigation


// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

    // Get the new view controller using [segue destinationViewController].

    // Pass the selected object to the new view controller.

}

*/


- (void)dealloc {

    [_button release];

    [_button1 release];

    [_button2 release];

    [_button3 release];

    [_insert release];

    [_updat release];

    [_deleteda release];

    [_button4 release];

    [_button5 release];

    [super dealloc];

}

@end

//

//  DataBasehandle.h

//  Ui - 18 数据库

//

//  Created by dllo on 15/12/2.

//  Copyright (c) 2015 dllo. All rights reserved.

//


#import <Foundation/Foundation.h>

@class Student;

@interface DataBasehandle : NSObject

+(instancetype)sharedDatabase;

- (void)openDB;

- (void)closeDB;


- (void)createTable;


- (void)deleteTable;

- (void)insertDataWithStudent:(Student *)stu;

- (void)deleteDataWithNumber:(NSInteger)num;

- (void)updataWithNumber:(NSInteger)num Student:(Student *)stu;

- (NSMutableArray *)selectAllStudent;

- (NSMutableArray *)selectBySexOfStudent:(NSString *)sex name :(NSString *)name;

@end

//

//  DataBasehandle.m

//  Ui - 18 数据库

//

//  Created by dllo on 15/12/2.

//  Copyright (c) 2015 dllo. All rights reserved.

//


#import "DataBasehandle.h"

#import "Student.h"

#import <sqlite3.h>

@implementation DataBasehandle

+(instancetype)sharedDatabase

{

    static DataBasehandle *dataBase = nil;

    if (nil == dataBase) {

        dataBase = [[DataBasehandle alloc]init];

    }

    return dataBase;

}


      static sqlite3  *DB = nil;


//sql指令(Student举例):

//

//创建表单 : @"CREATE TABLE IF NOT EXISTS student(number integer PRIMARY KEY AUTOINCREMENT, name TEXT, sex TEXT, age integer)"

//

//删除表单 : @"DROP TABLE student"

//

//插入数据 : @"INSERT INTO student(name, sex, age) VALUES ('%@', '%@', '%ld')", stu.name, stu.sex, stu.age

//

//删除数据 : @"DELETE FROM student WHERE number = '%ld'", num

//

//修改数据(num) : @"UPDATE student SET name = '%@', sex = '%@', age = '%ld' WHERE number = '%ld'", stu.name, stu.sex, stu.age, num

//

//查询所有数据 : SELECT * FROM student

//

//按分类查找(sex) : @"SELECT * FROM student WHERE  sex LIKE '%%%@%%'", sex

- (void)openDB

{

    NSString *path = [NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES)lastObject];

    NSString *filepath = [path stringByAppendingPathComponent:@"dataBase.db"];

    

    //打开数据库

    //注意将文件路径转为c语言识别的字符串类型

    int ret = sqlite3_open(filepath.UTF8String, &DB);

    if (SQLITE_OK == ret) {

        NSLog(@"打开数据库成功");

        

    } else {

        NSLog(@"打开数据库失败");

    }

    

    

}

- (void)closeDB

{

    int ret = sqlite3_close(DB);

    if (SQLITE_OK == ret) {

        NSLog(@"关闭数据库成功");

    } else {

        NSLog(@"关闭数据库失败");

    }

}


- (void)createTable

{

    NSString *sqlStr = @"CREATE TABLE IF NOT EXISTS student(number integer PRIMARY KEY AUTOINCREMENT, name TEXT, sex TEXT, age integer)";

    

    int ret = sqlite3_exec(DB, sqlStr.UTF8String, NULL, NULL, NULL);

    

    if (SQLITE_OK == ret) {

        NSLog(@"创建表单成功");

    } else {

        NSLog(@"创建表单失败");

    }

}

- (void)deleteTable

{

    NSString *sqlStr =  @"DROP TABLE student";

    

    int ret = sqlite3_exec(DB, sqlStr.UTF8String, NULL, NULL, NULL);

    

    if (SQLITE_OK == ret) {

        NSLog(@"删除表单成功");

    } else {

        NSLog(@"删除表单失败");

    }

}

- (void)insertDataWithStudent:(Student *)stu

{

    NSString *sqlStr = [NSString stringWithFormat:@"INSERT INTO student(name, sex, age) VALUES ('%@', '%@', '%ld')", stu.name, stu.sex, stu.age];

    

    int ret = sqlite3_exec(DB, sqlStr.UTF8String, NULL, NULL, NULL);

    

    if (SQLITE_OK == ret) {

        NSLog(@"插入数据成功");

    } else {

        NSLog(@"插入数据失败");

    }

}

- (void)deleteDataWithNumber:(NSInteger)num

{

    NSString *sqlstr = [NSString stringWithFormat: @"DELETE FROM student WHERE number = '%ld'", num];

    int ret = sqlite3_exec(DB, sqlstr.UTF8String, NULL, NULL, NULL);

    

    if (SQLITE_OK == ret) {

        NSLog(@"删除数据成功");

    } else {

        NSLog(@"删除数据失败");

    }

    

}

- (void)updataWithNumber:(NSInteger)num Student:(Student *)stu

{

    NSString *sqlstr = [NSString stringWithFormat: @"UPDATE student SET name = '%@', sex = '%@', age = '%ld' WHERE number = '%ld'", stu.name, stu.sex, stu.age, num];

    int ret = sqlite3_exec(DB, sqlstr.UTF8String, NULL, NULL, NULL);

    

    if (SQLITE_OK == ret) {

        NSLog(@"修改数据成功");

    } else {

        NSLog(@"修改数据失败");

    }

}

- (NSMutableArray *)selectAllStudent

{

    NSString *sqlstr = @"SELECT * FROM student";

    sqlite3_stmt *stmt = nil;

    int ret = sqlite3_prepare_v2(DB, sqlstr.UTF8String, -1, &stmt, NULL);

    if (SQLITE_OK == ret) {

        

        

        NSMutableArray *arr = [NSMutableArray array];

        //判断是否还有有效数据

        while (SQLITE_ROW == sqlite3_step(stmt)) {

            

            //参数:列数

           const unsigned char *name =  sqlite3_column_text(stmt, 1);

            const unsigned char *sex =  sqlite3_column_text(stmt, 2);

            sqlite3_int64 age = sqlite3_column_int(stmt, 3);

            Student *stu = [[Student alloc]init];

//            stu.name = name;

            stu.name = [NSString stringWithUTF8String:(const char *)name];

            stu.sex = [NSString stringWithUTF8String:(const char *)sex];

            //整型可以直接强转

            stu.age = (NSInteger)age;

            

            [arr addObject:stu];

            [stu release];

            

            

        }

        return arr;

    } else {

        NSLog(@"获取数据失败");

        return nil;

    }

}

- (NSMutableArray *)selectBySexOfStudent:(NSString *)sex name:(NSString *)name

{

     NSString *sqlstr = [NSString stringWithFormat@"SELECT * FROM student WHERE  sex LIKE '%%%@%%'    and name = '%@'", sex, name ];

    sqlite3_stmt *stmt = nil;

    int ret = sqlite3_prepare_v2(DB, sqlstr.UTF8String, -1, &stmt, NULL);

    if (SQLITE_OK == ret) {

        

        

        NSMutableArray *arr = [NSMutableArray array];

        //判断是否还有有效数据

        while (SQLITE_ROW == sqlite3_step(stmt)) {

            

            //参数:列数

          

            const unsigned char *name =  sqlite3_column_text(stmt, 1);

            const unsigned char *sex =  sqlite3_column_text(stmt, 2);

            sqlite3_int64 age = sqlite3_column_int(stmt, 3);

        

            Student *stu = [[Student alloc]init];

            //            stu.name = name;

            stu.name = [NSString stringWithUTF8String:(const char *)name];

            stu.sex = [NSString stringWithUTF8String:(const char *)sex];

            //整型可以直接强转

            stu.age = (NSInteger)age;

       

            

            [arr addObject:stu];

            [stu release];

            

            

        }

        return arr;

    } else {

        NSLog(@"获取数据失败");

        return nil;

    }

    

}


@end


//

//  Student.h

//  Ui - 18 数据库

//

//  Created by dllo on 15/12/2.

//  Copyright (c) 2015 dllo. All rights reserved.

//


#import <Foundation/Foundation.h>


@interface Student : NSObject

@property (nonatomic, copy)NSString *name;

@property (nonatomic, copy)NSString *sex;

@property (nonatomic, assign)NSInteger age;


@end


//

//  Student.m

//  Ui - 18 数据库

//

//  Created by dllo on 15/12/2.

//  Copyright (c) 2015 dllo. All rights reserved.

//


#import "Student.h"


@implementation Student

- (void)dealloc

{

    [_name release];

    [_sex release];

    [super dealloc];

    

    

}

@end




转载于:https://www.cnblogs.com/yuhaojishuboke/p/5043070.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/399200.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ducker桌面版更改安装位置_Ubuntu 16.04 安装 Docker和默认存储路径修改

docker的安装并不复杂&#xff0c;网上有很多可参考的教程&#xff0c;这里记录下我的安装步骤和docker 镜像存储路径的配置方法&#xff0c;仅供参考。一、安装dockerStep1&#xff1a;检查安装环境是否满足docker安装要求检查kernel内核是否在3.10以上&#xff1a;~$ uname -…

JAVA解析纯真IP地址库

2019独角兽企业重金招聘Python工程师标准>>> 用java实现对纯真IP数据库的查询&#xff0c;首先到网上下载QQwry.da文件&#xff0c;读取代码如下&#xff1a;1.IP记录实体类 package com.guess.tools; /** * 一条IP范围记录&#xff0c;不仅包括国家和区域&#xff…

java jespa_Jespa实际运用的一点心得

最近在项目中遇到一个需求&#xff0c;此需求场景就是&#xff1a;当用户登录了windows&#xff0c;若用户用的AD域账号登录&#xff0c;则用IE浏览器打开应用系统时&#xff0c;则不必再输入账号和密码&#xff0c;自动登录到系统。简单滴说&#xff0c;就是应用系统与AD域进行…

webstorm 代码提示

1、vue语法提示 设置 – Inspections – HTML – Unknown HTML tags&#xff0c;添加customs v-text     v-html     v-once     v-if     v-show     v-else     v-for     v-on     v-bind     v-model     v-ref     v-el   …

Atitit. 提升软件开发效率and 开发质量---java 实现dsl 4gl 的本质and 精髓 O725

Atitit. 提升软件开发效率and 开发质量---java 实现dsl 4gl 的本质and 精髓 O725 1. DSL主要分为三类&#xff1a;外部DSL、内部DSL&#xff0c;以及语言工作台。 1 2. DSL规则 2 2.1. DSL 整洁的代码 2 2.2. DSL必须以文本代码的形式出现 2 2.3. DSL的语法应该尽可能地接近…

java tcp 监听端口_【TCP/IP】端口未监听,还能访问成功?

作者&#xff1a;Mr林_月生链接&#xff1a;https://www.jianshu.com/p/3ab10c8685b5现象直接上图可以发现&#xff0c;本地没监听50000端口的服务&#xff0c;但是尝试连接本地50000端口时&#xff0c;却能成功建立连接&#xff0c;这种现象叫做「自连接」。我们再通过netstat…

python随机生成定长字符串(转)

原文&#xff1a;http://www.oschina.net/code/snippet_153443_4752 运行结果&#xff1a; 转载于:https://www.cnblogs.com/Jollyxi/p/7992007.html

HDU 2204 Eddy's爱好(容斥原理)

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid2204 解题报告&#xff1a;输入一个n让你求出[1&#xff0c;n]范围内有多少个数可以表示成形如m^k的样子。 不详细说了&#xff0c;自己一开始也忽略了三个素数的乘积的乘方的情况。 1 #include<cstdio>2…

python 物理引擎 摩擦力_参赛作品2-phenom的2D物理引擎

全球图形学领域教育的领先者、自研引擎的倡导者、底层技术研究领域的技术公开者&#xff0c;东汉书院在致力于使得更多人群具备内核级竞争力的道路上&#xff0c;将带给小伙伴们更多的公开技术教学和视频&#xff0c;感谢一路以来有你的支持。我们正在用实际行动来帮助小伙伴们…

vue-cli的webpack模版,相关配置文件dev-server.js与webpack.config.js配置解析

1.下载vue-cli [html] view plaincopy npm install vue-cli -g vue-cli的使用与详细介绍&#xff0c;可以到github上获取https://github.com/vuejs/vue-cli 2.安装webpack项目模版 [html] view plaincopy vue init <template-name> <project-name> 比如&#xff…

zookeeper windows 下安装

2019独角兽企业重金招聘Python工程师标准>>> 前沿&#xff1a;最近公司做的项目用到了dubbo 和 zookeeper 由于 每次测试的时候 我本地的服务就会注册到测试机上&#xff0c;还得每次把测试机的服务停止掉&#xff0c;所以准备在本地搭建一个zookeeper。 安装过程 2…

小白学jquery Mobile《构建跨平台APP:jQuery Mobile移动应用实战》连载四(场景切换)...

作为一款真正有使用价值的应用&#xff0c;首先应该至少有两个页面&#xff0c;通过页面的切换来实现更多的交互。比如手机人人网&#xff0c;打开以后先是进入登录页面&#xff0c;登录后会有新鲜事&#xff0c;然后拉开左边的面板&#xff0c;能看到相册、悄悄话、应用之类的…

Mysql学习总结(12)——21分钟Mysql入门教程

21分钟 MySQL 入门教程 目录 一、MySQL的相关概念介绍二、Windows下MySQL的配置 配置步骤MySQL服务的启动、停止与卸载三、MySQL脚本的基本组成四、MySQL中的数据类型五、使用MySQL数据库 登录到MySQL创建一个数据库选择所要操作的数据库创建数据库表六、操作MySQL数据库 向表中…

java 队列实例_Java 实例 - 队列(Queue)用法

全屏Java 实例 - 队列(Queue)用法队列是一种特殊的线性表&#xff0c;它只允许在表的前端进行删除操作&#xff0c;而在表的后端进行插入操作。LinkedList类实现了Queue接口&#xff0c;因此我们可以把LinkedList当成Queue来用。以下实例演示了队列(Queue)的用法&#xff1a;Ma…

@Html辅助方法

Html.LabelFor(m > m.UserName, new { class "col-md-2 control-label" })LabelFor使用了模型类中相应的DisplayName属性Html.ValidationSummary(true, "", new { class "text-danger" })验证消息的显示有两种&#xff0c;一种是Validation…

PrintJ的设计模式之旅——1.模式之父

好奇设计模式的源头&#xff0c;做了一番搜索和调查&#xff0c;于是便开启了这个系列“PrintJ的设计模式之旅”。 1.模式之父 GOF&#xff08;Gang of Four&#xff09; Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides合著了"Design Patterns: Elements of…

iOS 添加导航栏两侧按钮

self.navigationItem.leftBarButtonItem [[UIBarButtonItem alloc] initWithTitle:"首页" style:UIBarButtonItemStyleBordered target:self action:selector(popToRootView)] ;self.navigationItem.rightBarButtonItem [[UIBarButtonItem alloc] initWithTitle:&q…

java 1.6 ubuntu_ubuntu配置 Java SE 1.6

今天编译android 4.0时提示如下错误&#xff1a;You are attempting to build with the incorrect version of java.Your version is: java version "1.6.0_22".The correct version is: Java SE 1.6.查了一下现在已安装的java&#xff1a;java -versionjava version…

微信小程序 功能函数 把数字1,2,3,4换成春,夏,秋,冬

let season ‘1,2,3’;// console.log(season.length)if (season){if (season.length1){seasonChe1season.substr(0);seasonChe1 parseInt(seasonChe1)switch (seasonChe1) {case 1:(function(){seasonChe2春})()break;case 2:(function () {seasonChe2 夏})()break;case 3:(…

UVa 11549 Calculator Conundrum

大白书里面的题感觉就是没有什么固定的思路&#xff0c;只能认真理解学习汝佳大大的代码。 这里用的Floyd判圈法&#xff0c;就像插图里面的一样&#xff0c;两个小孩&#xff0c;一个快一个慢&#xff0c;如果实在一个环形跑道&#xff0c;那么快的那个最终一定会“追上”慢的…