8. --SQLite 删除整个表

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

//删除整个表

-(void)dropTable

{

NSString *dropsql = [NSString stringWithFormat:@"drop table student"];

//执行

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

if (sqlITE_OK == result) {

NSLog(@"删除整个表");

}

else

{

NSLog(@"删除失败,%d",result);

}

}

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

猜你在找的Sqlite相关文章