user1206076
user1206076

Reputation: 31

Rails Best Gem Or Plugin For Connecting To Multiple Databases using Same Application

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

Answers (1)

Ramon Araujo
Ramon Araujo

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

Related Questions