IOS之数据库的查找,删除,添加,更新(5)
来源:未知 责任编辑:责任编辑 发表时间:2013-12-22 14:54 点击:次
+(void)deleteByID:(int)ID
{
NSString *str = [NSString stringWithFormat:@"delete from classDB where ID = %d",ID];
sqlite3 *db = [DB openDB];
sqlite3_stmt *stmt = nil;
int result = sqlite3_prepare_v2(db, [str UTF8String], -1, &stmt, nil);
if (result == SQLITE_OK)
{
sqlite3_step(stmt);
}
sqlite3_finalize(stmt);
}
//更新
+(void)updataName:(NSString *)name phone:(NSString *)phone age:(int)age forID:(int)ID
{
NSString *str = [NSString stringWithFormat:@"update classDB set name = '%@',phone = '%@',age = %d where ID = %d",name,phone,age,ID];
sqlite3 *db = [DB openDB];
sqlite3_stmt *stmt = nil;
int result = sqlite3_prepare_v2(db, [str UTF8String], -1, &stmt, nil);
if (result == SQLITE_OK)
{
sqlite3_step(stmt);
}
sqlite3_finalize(stmt);
}
@end
相关新闻>>
- 发表评论
-
- 最新评论 进入详细评论页>>
今日头条
更多>>您可能感兴趣的文章
- iphone-使用TextField及关闭键盘(useing TextField for in
- iphone开发基础三和c语言混编
- ios 关于UITableView UITableViewCellAccessoryCheckmark 混乱的
- iOS文件存磁盘的设想
- (iOS-iap防护)验证用户付费收据,拒绝iap
- ios 时间定时器 NSTimer应用demo
- 深入理解iPhone静态库(手把手教你iphone开发
- Cocoa Core Competencies 的Object creation 和IOS面试题示例
- iPhone开发 文件的增加删除查询
- iPhone开发 调用阿asp.net程序的webservice
新闻点评
新闻关注排行榜
热门推荐
最新推荐