gpt4 book ai didi

ruby-on-rails - 如何访问由 update_all 生成的原始 SQL 语句(ActiveRecord 方法)

转载 作者:行者123 更新时间:2023-12-04 02:57:50 25 4
gpt4 key购买 nike

我只是想知道是否有办法访问为 update_all ActiveRecord 请求执行的原始 SQL。举个简单的例子:

Something.update_all( ["to_update = ?"], ["id = ?" my_id] )

在 Rails 控制台中,我可以看到原始 SQL 语句,所以我猜我可以通过某种方式访问​​它?

PS - 我对 update_all 特别感兴趣,无法将其更改为其他任何内容。

谢谢!

最佳答案

如果你看update_all的方式is implemented您不能像调用关系那样调用 to_sql,因为它直接执行并返回一个整数(执行的行数)。

除非复制整个方法并更改最后一行,否则无法进入流程或获得所需的结果:

module ActiveRecord
# = Active Record \Relation
class Relation
def update_all_to_sql(updates)
raise ArgumentError, "Empty list of attributes to change" if updates.blank?

if eager_loading?
relation = apply_join_dependency
return relation.update_all(updates)
end

stmt = Arel::UpdateManager.new

stmt.set Arel.sql(@klass.sanitize_sql_for_assignment(updates))
stmt.table(table)

if has_join_values? || offset_value
@klass.connection.join_to_update(stmt, arel, arel_attribute(primary_key))
else
stmt.key = arel_attribute(primary_key)
stmt.take(arel.limit)
stmt.order(*arel.orders)
stmt.wheres = arel.constraints
end

#- @klass.connection.update stmt, "#{@klass} Update All"
stmt.to_sql
end
end
end

您看到日志语句的原因是它们在连接执行语句时被记录下来。虽然您可以覆盖日志记录,但实际上不可能对来自单个 AR 方法的调用执行此操作。

关于ruby-on-rails - 如何访问由 update_all 生成的原始 SQL 语句(ActiveRecord 方法),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52083516/

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