我正在尝试通过另一个连接模型 AccountOwnership 设置一个 has_many :through 两个模型 User 和 CustomerAccount 之间的关系(用户和 account_ownerships 表在一个数据库中,比如 db1,而 customer_accounts 表在远程数据库中,比如 db2)。
这是设置关联的相关代码
class User < ActiveRecord::Base
has_many :account_ownerships, :dependent => :destroy
has_many :companies, :through => :account_ownerships
end
class AccountOwnership < ActiveRecord::Base
belongs_to :user
belongs_to :company, :class_name => "Reporting::CustomerAccount"
end
class CustomerAccount < Reporting::Base
set_table_name 'customers'
establish_connection("db2_#{RAILS_ENV}")
end
config/database.yml(配置正确,虽然这里没有显示)
development:
reconnect: false
database: db1
pool: 5
db2_development:
reconnect: false
database: db2
host: different.host
pool: 5
在脚本/控制台中
a = AccountOwnership.new(:user_id => 2, :company_id => 10)
a.user ## Returns the correct user
a.company ## returns the correct CustomerAccount instance
还
a.user.account_ownership ## returns a as anticipated
但
a.user.companies ## produces the following error:
#ActiveRecord::StatementInvalid: Mysql::Error: 表 #'db2.account_ownerships' 不存在:SELECT `customers`.* FROM #`customers` INNER JOIN `account_ownerships` ON `customers`.id = #`account_ownerships`.company_id WHERE ((`account_ownerships`.user_id = 4))
这里的问题是“account_ownerships”和“users”表包含在一个默认数据库中(例如 db1),而“customers”表包含在另一个数据库中(例如 db2)。与数据库的连接配置正确,但在查找过程中,由于只有一个数据库连接对象可用,Rails 尝试在 db2 中查找 account_ownerships 数据库,因此失败。
看起来我的设计/逻辑可能有缺陷,因为我看不到使用相同的数据库连接连接到两个不同数据库的方法,但我很高兴看到是否有解决方法,而无需更改设计。(我不愿意改变设计,因为 db2 不在我的控制之下)
看起来我可以通过将 account_ownerships 表移动到 db2 来解决这个问题,但这至少对我来说不太理想。
是否有任何替代机制/模式可以在 Rails 中设置此关联。
提前致谢。米