惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Scott Helme
Scott Helme
N
Netflix TechBlog - Medium
AI
AI
Security Latest
Security Latest
GbyAI
GbyAI
P
Proofpoint News Feed
Y
Y Combinator Blog
A
Arctic Wolf
G
Google Developers Blog
U
Unit 42
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Vulnerabilities – Threatpost
Know Your Adversary
Know Your Adversary
Cisco Talos Blog
Cisco Talos Blog
T
Tor Project blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
L
Lohrmann on Cybersecurity
C
CERT Recently Published Vulnerability Notes
C
Check Point Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
C
Cisco Blogs
云风的 BLOG
云风的 BLOG
NISL@THU
NISL@THU
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
阮一峰的网络日志
阮一峰的网络日志
Latest news
Latest news
L
LINUX DO - 最新话题
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
WordPress大学
WordPress大学
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
The Hacker News
The Hacker News
Simon Willison's Weblog
Simon Willison's Weblog
V
V2EX
Project Zero
Project Zero
博客园_首页

博客园 - wishma

SOAR平台初探(一) Logstash和Flume-NG Syslog接收小测试 Elasticsearch 填坑记 IBM TBSM 业务关联规则配置一例 免费实用微软系统工具集推荐(转) Netcool/OMNIbus Probe脚本编写例子(1) VMware vSphere开发(2)配置VMware vSphere Web Services SDK的开发环境 VMware vSphere开发(1)安装配置VMware vSphere Web Services SDK的运行环境 数字电视业务PSI/SI学习系列(转) SMI-S存储管理协议资料 strus2格式化数字和日期(转) - wishma - 博客园 NSDate常用代码范例 64位windows7连接网络共享打印机的问题 IPhone 视图切换的的2种方法 我的D630,安装MAC经历 Eclipse快捷键大全(转贴) (转贴)JIRA安装和破解,随便看看吧 CentOS上安装Tomcat,切换JDK的方法 哥不是间谍,哥只是在找信号!(转贴有意思)
IPhone数据库操作代码例子
wishma · 2010-06-09 · via 博客园 - wishma

//database operation

打开数据库 

-(BOOL) opendatabase{

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];

NSString *path = [documentsDirectory stringByAppendingPathComponent:@"mydb.sql"];

NSFileManager *fileManager = [NSFileManager defaultManager];

BOOL find = [fileManager fileExistsAtPath:path];

//找到数据库文件mydb.sql

if (find) {

         NSLog(@"Database file have already existed.");

         if(sqlite3_open([path UTF8String], &database_) != SQLITE_OK) {

         sqlite3_close(database_);

         NSLog(@"Error: open database file.");

         return NO;

        }

         return YES;

}

if(sqlite3_open([path UTF8String], &database_) == SQLITE_OK) {

//bFirstCreate_ = YES;

        [self createChannelsTable:database_];//在后面实现函数createChannelsTable

         return YES;

} else {

        sqlite3_close(database_);

        NSLog(@"Error: open database file.");

        return NO;

}

return NO;

}

创建表

- (BOOL) createChannelsTable:(sqlite3*)db{

char *sql = "CREATE TABLE reports (id integer primary key,stime  text,stitle text,scal   text,sruntime text)";

sqlite3_stmt *statement;

if(sqlite3_prepare_v2(db, sql, -1, &statement, nil) != SQLITE_OK) {

         NSLog(@"Error: failed to prepare statement:create reports table");

         return NO;

}

int success = sqlite3_step(statement);

sqlite3_finalize(statement);

if ( success != SQLITE_DONE) {

        NSLog(@"Error: failed to dehydrate:CREATE TABLE reports");

        return NO;

}

NSLog(@"Create table 'reports' successed.");

return YES;

}

插入表 

- (BOOL)insertOneChannel:(NSString*)stime mytitle:(NSString*)stitle mycal:(NSString*)scal myruntime:(NSString*)sruntime

{

sqlite3_stmt *statement;

static char *sql = "INSERT INTO reports (id,stime,stitle,scal,sruntime) VALUES(NULL,?,?,?,?)";

//问号的个数要和(cid,title,imageData,imageLen)里面字段的个数匹配,代表未知的值,将在下面将值和字段关联。

int success = sqlite3_prepare_v2(database_, sql, -1, &statement, NULL);

if (success != SQLITE_OK) {

        NSLog(@"Error: failed to insert:channels");

         return NO;

}

//这里的数字1234代表第几个问号

//sqlite3_bind_text(statement, 1, stime, -1, SQLITE_TRANSIENT);

char *p = [stime cStringUsingEncoding:1];

sqlite3_bind_text(statement, 1, [stime cStringUsingEncoding:1], -1, SQLITE_TRANSIENT);

sqlite3_bind_text(statement, 2, [stitle cStringUsingEncoding:1], -1, SQLITE_TRANSIENT);

sqlite3_bind_text(statement, 3, [scal cStringUsingEncoding:1], -1, SQLITE_TRANSIENT);

sqlite3_bind_text(statement, 4, [sruntime cStringUsingEncoding:1], -1, SQLITE_TRANSIENT);

success = sqlite3_step(statement);

sqlite3_finalize(statement);

if (success == SQLITE_ERROR) {

         NSLog(@"Error: failed to insert into the database with message.");

        return NO;

}

NSLog(@"Insert One Channel#############:id = _");

return YES;

}

查询表

- (void) getChannels:(NSMutableArray*)fChannels{

sqlite3_stmt *statement = nil;

char *sql = "SELECT * FROM reports";

if (sqlite3_prepare_v2(database_, sql, -1, &statement, NULL) != SQLITE_OK) {

        NSLog(@"Error: failed to prepare statement with message:get channels.");

}

//查询结果集中一条一条的遍历所有的记录,这里的数字对应的是列值。

while (sqlite3_step(statement) == SQLITE_ROW) {

       //char* cid = (char*)sqlite3_column_text(statement, 1);

       char* stime = (char*)sqlite3_column_text(statement, 1);

       char* stitle =(char*)sqlite3_column_text(statement, 2);

       char* scal = (char*)sqlite3_column_text(statement, 3);

       char* sruntime= (char*)sqlite3_column_text(statement, 4);

       //NSString *tmp = [NSString stringWithCString:stitle encoding:1];

        myreportitem* ri = [[myreportitem alloc] init];

       ri.mytime = [NSString stringWithCString:stime encoding:1];

        ri.mytitle = [NSString stringWithCString:stitle encoding:1];

        ri.mycal = [NSString stringWithCString:scal encoding:1];

       ri.myruntime = [NSString stringWithCString:sruntime encoding:1];

       [fChannels addObject:ri];

       [ri release];

}

sqlite3_finalize(statement);

}

删除记录

- (void)doClearReport: {

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];

NSString *path = [documentsDirectory stringByAppendingPathComponent:@"mydb.sql"];

NSFileManager *fileManager = [NSFileManager defaultManager];

BOOL find = [fileManager fileExistsAtPath:path];

//找到数据库文件mydb.sql

if (find) {

        NSLog(@"Database file have already existed.");

         if(sqlite3_open([path UTF8String], &database_) != SQLITE_OK) {

        sqlite3_close(database_);

        NSLog(@"Error: open database file.");

        return NO;

      }

      char *sql = "delete from reports";

       sqlite3_stmt *statement;

       if(sqlite3_prepare_v2(database_, sql, -1, &statement, nil) != SQLITE_OK) {

        NSLog(@"Error: failed to prepare statement:create reports table");

       return NO;

     }

     int success = sqlite3_step(statement);

      sqlite3_finalize(statement);

     if ( success != SQLITE_DONE) {

      NSLog(@"Error: failed to dehydrate:delete TABLE reports");

      return NO;

      }

      NSLog(@"Create table 'reports' successed.");

     sqlite3_close(database_);

   }

}