Home »
MongoDB
Update a document of a collection in MongoDB
In this article, we are going to update a document of collection name cars in MongoDB.
Submitted by Manu Jemini, on February 02, 2018
Here, in this example we are going to update a document through an Express server we need to full fill certain requirements:
- You must have MongoDB install: npm install MongoDB
- You must import, mongodb in the express server: var MongoDB = require('MongoDB ')
- You should always specify the url for MongoDB in accordance with your system: var url = "MongoDB ://localhost:27017/vehicle";
After fulfill the above three conditions, we should make connection to the database like this: MongoClient.connect(url, function(err,db){})
Then we have to make sure if there is any error or not with an if-else statement. If there is no error open a collection with its name: var collection = db.collection('cars');
Now in the example below we have to drop this collection by using the function drop: collection.update({"company_name":"nissan"},{$set: {"company_name":"BMW"}}, function(err,res){ })
Just like before we have to check for the error, if any. So to check if there is any error we use simple if-else statements.
The Object error will be passed by mongo itself and it will be false or null if there is no error, otherwise we will get an error object.
If we found an error we will console.log it, otherwise we will log the result of the query.
To make an optimum server to work smooth we should always close the connection after our use of it. There the last thing we do is close the db.
db.close();
JS code:
// require MongoDB
var MongoDB = require('MongoDB ');
var MongoClient = MongoDB .MongoClient;
//create url
var url = "MongoDB ://localhost:27017/vehicle";
//connect with mongo client
MongoClient.connect(url, function(err,db){
if(err)
{
console.log(err);
}
else
{
//console.log tthe connected url
console.log('Connected to ',url);
//get refernce of using collection
var collection = db.collection('cars');
// to update the documents
collection.update({"company_name":"nissan"},{$set: {"company_name":"BMW"}}, function(err,res){
if(err)
{
console.log(err);
}else
{
// if updatation is being sucessful
console.log('Update successful');
}
db.close();
})
}
});
Output on console
Output in shell (Before/After)