When should you be using MongoCollection and when DBCollection? The same questions apply to DBObject, BasicDBObject, Document. There seem to be different things are similar. At least to me they are. I find this very confusing. Any advice would be very welcome.
protected DBCollection(DB database, String name) Initializes a new collection. No operation is actually performed on the database. Parameters: database - database in which to create the collection name - the name of the collection.
Access a CollectionUse the getCollection() method of a MongoDatabase instance to access a MongoCollection in a database of your connected MongoDB instance.
“The MongoDB Legacy driver mongodb-driver-legacy is the legacy synchronous Java driver whose entry point is com. mongodb. MongoClient and central classes include com. mongodb. DB , com.
This seems to be a question about the 3.0.0 MongoDB Java driver.
The general advice is to use Document/MongoCollection/MongoDatabase for new application development.
The DBObject/DBCollection/DB classes, however, remain in the 3.0.0 driver so that many existing applications that currently use the 2.x driver series have an upgrade path to the 3.0 driver. The driver authors (I'm one of them) tried to make this clear by deprecating the MongoClient.getDB method, which returns an instance of the DB class, in order to encourage use of the new MongoClient.getDatabase method, which returns an instance of MongoDatabase.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With