gpt4 book ai didi

scala - Mapper 中是否有任何bulkUpdate(类似于bulkDelete_!!)?

转载 作者:行者123 更新时间:2023-12-05 01:36:17 27 4
gpt4 key购买 nike

有没有类似于bulkDelete_的bulkUpdate方法!!在映射器中,以便我可以更新基础表中的记录?

最佳答案

据我所知,不幸的是,为了执行批量更新(基于某些标准),我们只能使用 sql 查询。没有类似于bulkDelete_的方法!可用于批量更新。

例如:

def updateNameById (newName : String,  id : Long) = {  
val updateString = "update MyModel set name = ? where id = ?"
DB.use(DefaultConnectionIdentifier) { conn =>
DB.prepareStatement(updateString, conn) { stmt =>
stmt.setString(1, newName)
stmt.setLong(2, id)
stmt.executeUpdate()
}
}
}

关于scala - Mapper 中是否有任何bulkUpdate(类似于bulkDelete_!!)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8047110/

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