YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!

iOS-数据库-数据库创建

iOS-数据库-ViewController.m 调用- 数据库附件(1)
iOS-数据库-Student类-附件(2)

iOS-数据库-数据库创建


DataBaseHandle.h

//

// DataBaseHandle.h
// UI17_数据库
//
// Created by YIem on 16/3/3.
// Copyright © 2016年 YIem. All rights reserved.
//

import <Foundation/Foundation.h>

@class Student;
@interface DataBaseHandle : NSObject










DataBaseHandle.m

//

// DataBaseHandle.m
// UI17_数据库
//
// Created by YIem on 16/3/3.
// Copyright © 2016年 YIem. All rights reserved.
//

import "DataBaseHandle.h"

import "Student.h"

// 包含库文件libsq

import <sqlite3.h>

@implementation DataBaseHandle

// (相当于创建函数变量)
static sqlite3 *DB = nil;

// 表单的创建/删除(增/删/改)

// 删除表单

// 查询数据
// 查询所有数据

}
// 查询分类数据

}

@end

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »