2006-03-06
ググレのSNSでのアレ
otsuneさんがいそうだなと見に行ったらやっぱり居た。
ARで複数のDBに接続
今こんな感じにやってるんだけどもっとうまい方法ないんかなぁ。ダサイ。
# database.yaml
user_development:
adapter: mysql
database: foo
host: localhost
user_test:
adapter: mysql
database: foo_test
host: localhost
user_production:
adapter: mysql
database: foo
host: example.com
class User < ActiveRecord::Base
end
User.establish_connection("user_#{RAILS_ENV}")