我想要这样做的规范
方法.我的Google
搜索已经很短.我有一个ActiveRecord模型应该映射到与其他应用程序不同的
数据库.我想将新配置存储在
database.yml
文件中.
我明白建立连接应该被调用,但不清楚在哪里.这是我到目前为止,它不起作用:
class Foo < ActiveRecord::Base
establish_connection(('foo_' + ENV['RAILS_ENV']).intern)
end
另外,使用不同
数据库的模型子类化是一个好主意,如:
class AnotherBase < ActiveRecord::Base
self.abstract_class = true
establish_connection "anotherbase_#{RAILS_ENV}"
end
并在你的模型
class Foo < AnotherBase
end
当您需要添加访问相同数据库的后续模型时,这很有用.
原文链接:https://www.f2er.com/ruby/273051.html