我有两个名为 app1 和 app2 的应用程序,我使用连接建立方法连接了两个数据库。我在两个数据库中都有相同的表名,现在我想将选定的数据从 app2 发送到 app1。这是我连接两个数据库的代码,请帮助我。
class Student < ActiveRecord::Base
establish_connection :adapter => "mysql2",
:database => "app1_db",
:username => "root",
:password => "root"
set_table_name "students"
belongs_to :student, :class_name => "students", :foreign_key => "fk_student_id"
end