6. --SQLite 专属的修改

前端之家收集整理的这篇文章主要介绍了6. --SQLite 专属的修改前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//根据名字来修改年龄

-(void)changeStudentAge:(NSInteger)age withName:(NSString *)name

{

NSString *changesql = [NSString stringWithFormat:@"UPDATE 'student' SET age = %ld WHERE name = '%@' ",age,name];

int result = sqlite3_exec(db,changesql.UTF8String,NULL,NULL);

if (sqlITE_OK == result) {

NSLog(@"修改成功");

}

else

{

NSLog(@"修改失败");

}

}

原文链接:https://www.f2er.com/sqlite/199299.html

猜你在找的Sqlite相关文章