No SQL > Mongo DB > How to insert a Document in Mongo Database
How to insert a Document in Mongo Database
MongoDB is a scalable, high-performance, open source NoSQL database.
It offers Ad hoc queries, Indexing, Replication, Load balancing, File storage (GridFS), Aggregation,
MapReduce and Server-side JavaScript execution.
This requires the library mongo-2.8.0.jar to be present in the classpath.
The following example shows how to insert a document in Mongo database.
try {
//Connect to mongoDB with given IP and PORT
Mongo mongo = new Mongo("localhost", 27017);
//Get the database object
DB database = mongo.getDB("mytestdb");
//Gets a collection with a given name.
//If the collection does not exist, a new collection is created.
DBCollection collection = database.getCollection("students");
//collection.drop();
//Create and insert document to collection
DBObject document = new BasicDBObject();
document.put("name", "Sriram");
document.put("age", 2);
collection.insert(document);
document = new BasicDBObject()
.append("name", "Sudhakar")
.append("age", 29)
.append("mobile", "123456789");
collection.insert(document);
//Queries for all objects in this collection
DBCursor dbCursor = collection.find();
DBObject record = null;
while (dbCursor.hasNext()) {
record = dbCursor.next();
System.out.println(record);
}