Możesz użyć mysql2 gem bezpośrednio. Przeczytaj dokumentację tutaj:https://github.com/brianmario/mysql2
Lub:
Możesz utworzyć nową klasę, taką jak MysqlConnection, w ten sposób:
class MysqlConnection < ActiveRecord::Base
self.establish_connection(:adapter => 'mysql', :database => 'some-database-name') # Set all the other required params like host, user-name, etc
end
Od teraz możesz to zrobić,
MysqlConnection.connection.select_all("SELECT * FROM table_name")
Kliknij link, aby dowiedzieć się, jak przechowywać szczegóły konfiguracji w database.yml:http://weare.buildingsky.net/2006/12/06/multiple-concurrent-database-connections-with-activerecord