MongoDb

From Objectif Client Inc
Revision as of 21:41, 27 April 2015 by Nicolas Rollin (talk | contribs)
Jump to navigation Jump to search

Cheat sheet

  • Connect to a mongodb
mongodb
  • Display dabases
show dbs
  • Connect to a database
use database
  • List Tables (Collections)
show collections
  • Display content of a table
db.collection.find()
  • Remove Tables (Collections)
db.collection.drop()
  • Remove Database (Collections)
db.dropDatabase()

Http Interface

Http Interface