Package com.mongodb

Examples of com.mongodb.MongoClient.dropDatabase()


        for (String s : mongoClient.getDatabaseNames()) {
            System.out.println(s);
        }

        // drop a database
        mongoClient.dropDatabase("mydb");

        for (String s : mongoClient.getDatabaseNames()) {
            System.out.println(s);
        }
View Full Code Here


        for (final DBObject o : list) {
            System.out.println(o);
        }

        // clean up
        mongoClient.dropDatabase("mydb");
        mongoClient.close();
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
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.