Reputation: 31
I am Using Rails 3.0.3 Application. In My Application I need to interact with multiple databases dynamically at run time.
Requirement:
1] In future I may be need to add some more databases. It should support that requirement.
Upvotes: 2
Views: 625
Reputation: 1738
To interact with multiple databases you can use Connection Ninja. Please follow this link. There you can see that works even with rails 3, just install it using:
gem install connection_ninja
Hope that helps,
Upvotes: 2