如何使iPhone开发数据持久化
如何使iPhone开发数据持久化是本文要介绍的内容。在开发应用程序的时候,当然需要经常的实用数据库进行数据的保存了,在移动设备上,我们可以使用文件,数据库等方式去保存,为了能够让用户无法使用其他的程序去修改,我这里认为使用数据库的方式是一个很好的方式。在iPhone上面,我们可以使用SQLite进行数据的持久化。另外值得一提的是 Firefox是使用数据库的方式保存的,同样也是SQLite。
在iPhone开发重,我们需要首先添加一个SQLite的库,XCode本身就支持的,我们在左边的Frameworks里面选择Add,然后选择Existing Frameworks,在弹出窗口中选择SQLite的库libsqlite3.0.dylib。
添加之后,我们就可以使用SQLite在iPhone中进行数据的保存,查询,删除等操作了。
现在我们可以写一个SQLite的Helper文件,方便我们在其他的代码中使用,头文件(SqliteHelper.h)如下。
#import #import “sqlite3.h“ #define kFileName @”mydatabase.sql” @interface SqliteHelper : NSObject { sqlite3 *database; } //创建表 - (BOOL)createTable; //插入数据 - (BOOL)insertMainTable:(NSString*) username insertPassword:(NSString*) password; //查询表 - (BOOL)checkIfHasUser; @end 我们的代码文件如下。 #import “SqliteHelper.h“ @implementation SqliteHelper - (BOOL)createTable { NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *paths = [[path objectAtIndex:0] stringByAppendingPathComponent:kFileName]; NSFileManager *fileManager = [NSFileManager defaultManager]; BOOL fileFinded = [fileManager fileExistsAtPath:paths]; NSLog(@”Database file path is %@“,paths); if(fileFinded) { NSLog(@”Database file existed“); if(sqlite3_open([paths UTF8String],&database)!=SQLITE_OK) { sqlite3_close(database); NSLog(@”Open Failed“); return NO; } } else { NSLog(@”Database file is not existed“); if(sqlite3_open([paths UTF8String],&database)!=SQLITE_OK) { sqlite3_close(database); NSLog(@”Open Failed“); return NO; } } char *errorMsg; NSString *createSQL = @”create table if not exists fields (userid integer primary key,username text,password text)“; if(sqlite3_exec(database,[createSQL UTF8String],NULL,NULL,&errorMsg)!=SQLITE_OK) { sqlite3_close(database); NSLog(@”Open failed or init filed“); return NO; } return YES; } - (BOOL)insertMainTable:(NSString*) username insertPassword:(NSString*) password { char *errorMsg; NSString *createSQL = @”create table if not exists fields (userid integer primary key,username text,password text)“; if(sqlite3_exec(database,[createSQL UTF8String],NULL,NULL,&errorMsg)!=SQLITE_OK) { sqlite3_close(database); NSLog(@”Open failed or init filed“); return NO; } NSString *insertData = [[NSString alloc] initWithFormat:@”insert or replace into fields (userid,username,password) values (%d,’%@’,'%@’)“,0,username,password]; if(sqlite3_exec(database,[insertData UTF8String],NULL,NULL,&errorMsg)!=SQLITE_OK) { sqlite3_close(database); NSLog(@”Open failed or failed to insert“); return NO; } return YES; } - (BOOL)checkIfHasUser { NSString *getUserCountSQL = @”select * from fields“; sqlite3_stmt *statement; NSLog(@”checkIfHasUser“); if(sqlite3_prepare_v2(database,[getUserCountSQL UTF8String],-1,&statement,nil)==SQLITE_OK) { //while(sqlite3_step(statement) == SQLITE_ROW) //{ // int row = sqlite3_column_int(statement,0); // char* rowData = (char*)sqlite3_column_text(statement,2); // NSString *fieldName = [[NSString alloc] initWithFormat:@”show%d”,row]; // NSString *fieldValue = [[NSString alloc] initWithUTF8String:rowData]; // // NSLog(@”fieldName is :%@,fieldValue is :%@”,fieldName,fieldValue); // return [[NSString alloc] initWithFormat:@”fieldName is :%@,fieldValue is :%@”,fieldName,fieldValue]; // // [fieldName release]; // [fieldValue release]; //} //sqlite3_finalize(statement); if(sqlite3_step(statement) == SQLITE_ROW) { NSLog(@”Have user“); return YES; } } NSLog(@”No user“); return NO; } @end
相关推荐
liuxudong00 2020-11-19
章鱼之家 2020-10-29
leitingdulante 2020-10-21
xuegangic 2020-10-17
硬币0 2020-10-15
ZuoYanDeHuangHun 2020-09-18
chsoft 2020-09-17
MatrixHero 2020-08-20
XxZproject 2020-08-10
定格 2020-08-15
Mryiyi 2020-08-07
ydc0 2020-07-30
yechen00 2020-07-25
孝平 2020-07-18
ntfsformac 2020-06-23
好好学习天天 2020-06-12
Charliewolf 2020-06-05
MAC2007 2020-06-04
fanxiaoxuan 2020-06-03