Differences

This shows you the differences between two versions of the page.

Link to this comparison view

mongodb [2021/04/05 11:23] (current)
Line 1: Line 1:
 +====== MongoDB ======
  
 +===== Shell =====
 +
 +Start the shell with the client ''<mongodb>/bin/mongo''.
 +
 +You can add the database as a parameter
 +
 +    <mongodb>/bin/mongo local
 +
 +The collection is used as a the first part after the db command in the shell.
 +
 +    db.iledocs.find()
 +
 +
 +{{tag>mongodb}}