Hi everyone, I’m quite new to RoR but in general wanna try get some of
my holes within Ruby on Rails plugged. At the moment my biggest question
is:
How can you as elegantly as the standard database config use multiple
database sources. For instance if you got a project database in a MsSQL
database, economy data from a Oracle database to get data to fill in a
new database schema in your own control. (I’m a fool for elegant
solutions instead of spaghetti solutions).
I seen myriads of howtos and more about database pooling and more, but
cant for the life of me find anything about this subject. And for the
time being most of my projects have multiple data sources to mine data
from, and I’m eager to try get a new project up running on RoR to get
some more hands on knowledge instead of making hobbyist projects all the
time
I too am trying to do this. It seems like something that should be
easily configurable. establish_connection :blah
seems to work fine in the model,
however causes problems in the migration used to create that model
ActiveRecord::Base.establish_connection :blah
The migration completes successfully but then an exception is thrown:
rake aborted!
An error has occurred, this and all later migrations canceled:
not connected
Tasks: TOP => db:migrate
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.