博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios中Pldatabase的用法(2)
阅读量:6115 次
发布时间:2019-06-21

本文共 1963 字,大约阅读时间需要 6 分钟。

 

@implementation AppGlobalstatic NSString* strHostName;static NSString* strVersion;static PLSqliteDatabase* dbHelper;static CConfigSetting* configSetting;+ (BOOL) Init{    strHostName = HTTPURLPREFIX;    strVersion = @"1.01";        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);    NSString *dbPath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"TaxOffice.db"];    dbHelper = [[PLSqliteDatabase alloc] initWithPath:dbPath];          NSLog(@"TaxOffice.db  path = %@",dbPath);    if (![DBInit initDB])        return FALSE;        configSetting = [[CConfigSetting alloc] init];    return TRUE;}+ (void) DeInit{    [dbHelper close];    [dbHelper release];    [configSetting release];}+ (NSString*) DefaultHost{    return strHostName;}+ (NSString*) Version{    return strVersion;}+ (PLSqliteDatabase*) DbHelper{    return dbHelper;}+ (CConfigSetting*) ConfigSetting{    return configSetting;}@end

 

+(BOOL) initDB{    PLSqliteDatabase* idb = [AppGlobal DbHelper];        if (![idb open]) {        return FALSE;    }    // 配置信息表        if (![idb tableExists:@"Config"]) {        if (![idb executeUpdate: @"CREATE TABLE Config(key integer,value text)"])              return FALSE;    }    // 客户信息表    if (![idb tableExists:@"Customers"]) {        NSString *strSql = @"CREATE TABLE Customers(id integer PRIMARY KEY autoincrement not null,"                            "idno text, name text, tel text, remark text)";        if (![idb executeUpdate: strSql]) {            return FALSE;        }    }        // 商品信息表    if (![idb tableExists:@"Products"]) {        NSString *strSql = @"CREATE TABLE Products(id integer PRIMARY KEY autoincrement not null,"                            "idno text, name text, type integer, price real,"                            "amount real, units text, remark text)";        if (![idb executeUpdate: strSql]) {            return FALSE;        }    }        //        return TRUE;}

 

转载地址:http://ntvka.baihongyu.com/

你可能感兴趣的文章
Office WORD如何取消开始工作右侧栏
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
第一个应用程序HelloWorld
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Android Annotation扫盲笔记
查看>>
React 整洁代码最佳实践
查看>>
聊聊架构设计做些什么来谈如何成为架构师
查看>>
Java并发编程73道面试题及答案
查看>>
移动端架构的几点思考
查看>>
Tomcat与Spring中的事件机制详解
查看>>
Spark综合使用及用户行为案例区域内热门商品统计分析实战-Spark商业应用实战...
查看>>
初学者自学前端须知
查看>>
Retrofit 源码剖析-深入
查看>>
企业级负载平衡简介(转)
查看>>
ICCV2017 论文浏览记录
查看>>
科技巨头的交通争夺战
查看>>
当中兴安卓手机遇上农行音频通用K宝 -- 卡在“正在通讯”,一直加载中
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>