
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maruthi Krishna has Published 870 Articles

Maruthi Krishna
509 Views
The org.opencv.imgproc package of Java OpenCV library contains a class named Imgproc this class provies various methods such as, resize(), wrapAffine(), filter2D, to process an input image.In addition to them It provides a set of method to draw geometrical shapes on images, Following are some of them −ShapeMethod and DescriptionEllipseYou ... Read More

Maruthi Krishna
2K+ Views
Using the updateMany() method you can update all the documents of a collection.Syntaxdb.COLLECTION_NAME.update(, )In Java the com.mongodb.client.MongoCollection interface provides you a method with the same name. Using this method you can update multiple documents in a collection at once, to this method you need to pass the filter and values ... Read More

Maruthi Krishna
4K+ Views
The update() method updates the values in the existing document.Syntaxdb.COLLECTION_NAME.update(SELECTIOIN_CRITERIA, UPDATED_DATA)In Java, you can update a single document using the updateOne()method of the com.mongodb.client.MongoCollection interface. To this method, you need to pass the filter and values for the update.Exampleimport com.mongodb.client.FindIterable; import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoDatabase; import com.mongodb.client.model.Filters; import com.mongodb.client.model.Updates; import java.util.ArrayList; ... Read More

Maruthi Krishna
2K+ Views
While retrieving records from a MongoDB collection, you can sort the records in the result using the sort() method.Syntaxdb.COLLECTION_NAME.find().sort({KEY:1})The Java MongoDB library provides a method with the same name, to limit the number of records invoke this method (on the result of the find() method) by passing the type of ... Read More

Maruthi Krishna
2K+ Views
There is no separate method to create a MongoDB database in Java, you can create a database by invoking the getDatabase() method of the com.mongodb.MongoClient class.Exampleimport com.mongodb.MongoClient; public class CreatingDatabase { public static void main( String args[] ) { //Creating a MongoDB client ... Read More

Maruthi Krishna
2K+ Views
In MongoDB to create an index, you need to use createIndex() method.Syntaxdb.COLLECTION_NAME.createIndex({KEY:1})Where the key is the name of the file on which you want to create index and 1 is for ascending order. To create an index in descending order you need to use -1.In Java, you can create an ... Read More

Maruthi Krishna
991 Views
In Java the com.mongodb.client.MongoCollection interface provides a method deleteMany(). Using this method you can delete multiple documents from a collection at once, to this method you need to pass the filter specifying the deletion criteria.Exampleimport com.mongodb.client.FindIterable; import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoDatabase; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.bson.Document; import org.bson.conversions.Bson; ... Read More

Maruthi Krishna
708 Views
MongoDB db.dropDatabase() command is used to drop a existing database.This will delete the current database. if you haven't selected any, the default (test) database will be deleted.Syntaxdb.dropDatabase()In Java to delete a database, first of all, get the object of the required database using the getDatabase() method and delete it by ... Read More

Maruthi Krishna
620 Views
In MongoDB to drop an index, you need to use dropIndex() method.Syntaxdb.COLLECTION_NAME.dropIndex({KEY:1})In Java, you can drop an Index using the dropIndex() method, to this method you need to pass the type of the index (ascending or descending) and the field name on which you have created it.dropIndex(Indexes.ascending("name"));Exampleimport com.mongodb.client.MongoCollection; import com.mongodb.client.MongoDatabase; ... Read More

Maruthi Krishna
635 Views
While retrieving records from a MongoDB collection, you can limit the number of records in the result using thelimit() method.Syntaxdb.COLLECTION_NAME.find().limit(no.of records needed)The Java MongoDB library provides a method with the same name, to limit the number of records invoke this method (on the result of the find() method) by passing ... Read More