
MongoDB Tutorial
MongoDB (derived from the English humongous, βgiganticβ) is a document-oriented NoSQL database written in the C++ programming language. Because the database is document-oriented, it can manage collections of JSON-like documents. This allows many applications to model data in a more natural way, since the data can be nested in complex hierarchies while still remaining queryable and indexable. [Wikipedia] The MongoDB server can be started with the following command. However, the following folder must first be created: C:\data\db. This is where the database data is stored. mongod ...