gpt4 book ai didi

mysql - 为什么 activerecord 不填充从创建返回的项目中的自动递增列?

转载 作者:可可西里 更新时间:2023-11-01 06:33:34 26 4
gpt4 key购买 nike

为什么 Rails 不在创建返回的项目中填充自动递增列?有更好的方法吗?

在 Rails 中,当您执行 a = Foo.create 时,a.id 会被填充

但是如果你有一个通过

创建的字段
def up   
execute "ALTER TABLE my_table ADD COLUMN my_auto_incrementing_column INTEGER AUTO_INCREMENT not null UNIQUE KEY;"
end

然后当您使用创建时,该字段不会出现。您还必须使用重新加载。

a = Foo.create
a.id # not nil
a.my_auto_incrementing_column # nil
a.reload
a.my_auto_incrementing_column # is now populated

版本信息:

$ ruby -v
ruby 1.9.3p484 (2013-11-22 revision 43786) [x86_64-darwin14.5.0]
$ bundle exec rails -v
Rails 3.2.12
$ mysql --version
mysql Ver 14.14 Distrib 5.6.26, for osx10.10 (x86_64) using EditLine wrapper

一些背景:

此代码应用于现有的大型生产中 rails 代码库,该代码库要求所有 id 字段都是 UUID。 auto_increment 列不是主键,因为它是在我们发现新的外部集成合作伙伴无法使用我们现有的长唯一标识符 (UUID) 处理后添加的。

我们正在努力更新我们的 ruby​​ 版本,但我们不想等待它作为这个问题的解决方案。此外,在阅读了 activerecord 中的变更日志后,我仍然没有证据表明任何 future 版本的 ruby​​/rails 将包含针对此问题的错误修复。

我要改进的代码:

class Foo < ActiveRecord::Base
has_one :object_containing_auto_incrementing_column

def my_method
if self.object_containing_auto_incrementing_column.nil?
self.object_containing_auto_incrementing_column = ObjectContainingAutoIncrementingColumn.create(owner: self)
self.object_containing_auto_incrementing_column.reload
end
self.object_containing_auto_incrementing_column.my_auto_incrementing_column
end
end

最佳答案

看了source code之后ActiveRecord 似乎没有尝试填充自动递增列。它仅将 INSERT 语句返回的值分配给 #id 属性,不分配任何其他值。

 # ActiveRecord:: Persistence::ClassMethods
def create
# ...
self.id ||= new_id if self.class.primary_key
# ...
end

如果您想填充 my_auto_incrementing_column 而无需两次访问数据库,我认为没有办法绕过修补 ActiveRecord 本身。

看看如何insert method已实现:

  # Returns the last auto-generated ID from the affected table.
#
# +id_value+ will be returned unless the value is nil, in
# which case the database will attempt to calculate the last inserted
# id and return that value.
#
# If the next id was calculated in advance (as in Oracle), it should be
# passed in as +id_value+.
def insert(arel, name = nil, pk = nil, id_value = nil, sequence_name = nil, binds = [])
sql, binds = sql_for_insert(to_sql(arel, binds), pk, id_value, sequence_name, binds)
value = exec_insert(sql, name, binds)
id_value || last_inserted_id(value)
end

可能没有任何简单的方法可以更改当前 API 以填充您的相关字段。

关于mysql - 为什么 activerecord 不填充从创建返回的项目中的自动递增列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34141646/

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