updateMulti metodu
ÖrnekElimizde şöyle bir kod olsun.
MongoClient mongo = new MongoClient("localhost", 27017);
DB db = mongo.getDB("myDB");
DBCollection collection = db.getCollection("myCollection");
Tüm nesnelere yeni bir alan eklemek için şöyle yaparız.DBObject queryAll = new BasicDBObject();
DBObject newValue = new BasicDBObject("xxx", "newField");
DBObject update = new BasicDBObject("$set", newValue);
collection.updateMulti(queryAll, update);
Hiç yorum yok:
Yorum Gönder