I am using Rails 3 and Mongoid gem. But I need to fill a combobox with the list of mongodb databases. In mongodb shell we can list databases with "show dbs" command. Also there is getDBNameList() and db.getCollectionNames() commands in mongodb drivers. But I could not figure out how to use these commands from a ruby on rails app.

Also I wonder; if I can get databases and collections list with using mongoid gem. Because I am sure that I had read that mongoid supports using more than one database, but I think it was model dependent.

So what do you think; is there any solution or I have to use mongo-ruby-driver gem, not mongoid.

link|improve this question
feedback

2 Answers

It would be easier to get the Mongo::DB out of the Mongoid config:

db = Mongoid::Config.master
db.collection_names
link|improve this answer
we can configure all the databases in Mongoid (via mongoid.yml) dbs = Mongoid.databases dbs.each do |db| db.collections end – user622773 Mar 9 '11 at 9:04
connection = Mongoid.master.connection connection.database_names #=> Get an array of names db = connection.database("name") #=> Get a specific db object db.collections #=> Get an array of collections ##### I think this is the best way; Thanks to durran (from github). – user622773 Mar 9 '11 at 9:05
feedback

You can do the following using the mongo ruby driver:

require 'rubygems'
require 'mongo'

connection = Mongo::Connection.new("localhost")
connection.database_names.each do |name|
  db = connection.db(name)
  db.collections.each do |collection|
    puts "#{name} - #{collection.name}"
  end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.