IOS之数据库的查找,删除,添加,更新(2)
@synthesize name,ID,phone,age;
-(id)initWithName:(NSString *)aName phone:(NSString *)aPhone age:(int)aAge ID:(int)aID
{
[super init];
if (self)
{
self.name = aName;
self.phone = aPhone;
self.age = aAge;
self.ID = aID;
}
return self;
}
-(NSString *)description
{
return [NSString stringWithFormat:@"id = %d name = %@ phone = %@ age = %d",self.ID,self.name,self.phone,self.age ];
}
+(NSMutableArray *)findAll
{
sqlite3 *db = [DB openDB];
sqlite3_stmt *stmt = nil;//创建一个声明对象
int result = sqlite3_prepare_v2(db, "select * from classDB order by ID ", -1, &stmt, nil);
NSMutableArray *persons = nil;
if (result == SQLITE_OK)
{
persons = [[NSMutableArray alloc]init];
while (sqlite3_step(stmt) == SQLITE_ROW)
{
int ID = sqlite3_column_int(stmt, 0);
const unsigned char *name = sqlite3_column_text(stmt, 1);
const unsigned char *phone = sqlite3_column_text(stmt, 2);
int age = sqlite3_column_int(stmt, 3);
Person *p = [[Person alloc]initWithName:[NSString stringWithUTF8String:(const char *)name] phone:[NSString stringWithUTF8String:(const char *)phone] age:age ID:ID];
[persons addObject:p];
[p release];
}
}
else
{
persons = [[NSMutableArray alloc]init];
}
sqlite3_finalize(stmt);
return [persons autorelease];
}
+(int)count
{
相关新闻>>
- 发表评论
-
- 最新评论 进入详细评论页>>
今日头条
更多>>您可能感兴趣的文章
- iphone-使用TextField及关闭键盘(useing TextField for in
- 深入理解iPhone静态库(手把手教你iphone开发
- ios 关于UITableView UITableViewCellAccessoryCheckmark 混乱的
- (iOS-iap防护)验证用户付费收据,拒绝iap
- iPhone开发 文件的增加删除查询
- ios 时间定时器 NSTimer应用demo
- iphone开发基础三和c语言混编
- iOS文件存磁盘的设想
- iPhone开发 调用阿asp.net程序的webservice
- Cocoa Core Competencies 的Object creation 和IOS面试题示例