我想更新多条记录 (DBAccess ORM)。根据特定字段的条件。比如 set city = "Goa"where name = "atul"。
请查看以下 swift 代码,它工作正常。但是如何在不使用 for 循环的情况下通过单个查询来做到这一点。
func updateRecordsByName(userName: String) {
//like userName = atul;
let userArr : DBResultSet = User.query().whereWithFormat("name = %@", withParameters:[userName]).fetch();
for data in userArr {
(data as! User).city = "Goa";
(data as! User).commit();
}
}
请提出完美的解决方案以减少行数/循环数并改进上述查询代码。
也没有办法,除了执行原始 SQL 本身就很危险,尤其是缓存和打开的对象不知道 SQLite 中已更新的值。
循环对象有问题吗?如果它是性能,那么将更新包装在一个事务中,这样会加快它的速度。
DBTransaction.transaction({
// put all your writes here
for data in userArr {
(data as! User).city = "Goa";
(data as! User).commit();
}
}) {
// rollback
}
也升级到 SharkORM,因为它现在已经从 DBAccess 接管:
http://sharkorm.com , https://github.com/sharksync/sharkorm
如果需要,您可以随时向查询模块添加更新功能。或者通过问题提出功能请求。
关于ios - 如何在 swift 中使用 dbAccess 的特定字段更新多条记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38482326/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |