gpt4 book ai didi

iphone - 如何使用FMDB从表中删除所有数据

转载 作者:行者123 更新时间:2023-12-01 17:20:53 24 4
gpt4 key购买 nike

我想从数据库中的表中删除所有数据。我正在使用FMDB。并且我已使用此代码,但它不会从我的表中删除数据。

-(BOOL) deleteAll
{

FMDatabase *db = [FMDatabase databaseWithPath:[Utility getDatabasePath]];
[db open];

BOOL success = [db executeUpdate:@"TRUNCATE TABLE customers"];

[db close];

return success;
return YES;
}

最佳答案

尝试使用此代码。

BOOL success =  [db executeUpdate:@"DELETE FROM customers"];

只要我知道Sqlite不支持 TRUNCATE查询。

关于iphone - 如何使用FMDB从表中删除所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15809520/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com