Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- MongoClient mongo = new MongoClient("localhost", 27017);
- DB db = mongo.getDB("lamevabbdd");
- DBCollection table = db.getCollection("persona");
- BasicDBObject document = new BasicDBObject();
- document.put("name", "mkyong");
- document.put("age", 30);
- document.put("createdDate", new Date());
- table.insert(document);
Advertisement
Add Comment
Please, Sign In to add comment