This class provides a skeleton implementation of a database collection.
A typical invocation sequence is thus
MongoClient mongoClient = new MongoClient(new ServerAddress("localhost", 27017)); DB db = mongo.getDB("mydb"); DBCollection collection = db.getCollection("test");
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.