mongo.update(rmongodb)
mongo.update()所属R语言包:rmongodb
Perform an update on a collection
执行更新集合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Perform an update on a collection.
对集合进行更新。
See http://www.mongodb.org/display/DOCS/Updating.
请参阅http://www.mongodb.org/display/DOCS/Updating。
用法----------Usage----------
mongo.update(mongo, ns, criteria, objNew, flags=0L)
参数----------Arguments----------
参数:mongo
(mongo) a mongo connection object.
(蒙戈)蒙戈的连接对象。
参数:ns
(string) namespace of the collection to which to update.
(字符串)命名空间的收集,更新。
参数:criteria
(mongo.bson) The criteria with which to match records that are to be updated. Alternately, criteria may be a list which will be converted to a mongo.bson object by mongo.bson.from.list().
(mongo.bson)的标准进行匹配的是要更新的记录。或者,criteria可能是由mongo.bson.from.list()到mongo.bson对象的列表将被转换。
参数:objNew
(mongo.bson) The replacement object. Alternately, objNew may be a list which will be converted to a mongo.bson object by mongo.bson.from.list().
(mongo.bson)的替换对象。或者,objNew可能是由mongo.bson.from.list()到mongo.bson对象的列表将被转换。
参数:flags
(integer vector) A list of optional flags governing the operation:
(整数向量)的列表管理操作的可选标志:
mongo.update.upsert: insert ObjNew into the database if no record matching criteria is found.
mongo.update.upsert:插入到数据库中,如果没有记录匹配条件ObjNew。
mongo.update.multi: update multiple records rather than just the first one matched by criteria.
mongo.update.multi:更新多条记录,而不仅仅是第一个匹配的标准。
mongo.update.basic: Perform a basic update.
mongo.update.basic:执行基本的更新。
参见----------See Also----------
mongo,<br> mongo.bson,<br> mongo.insert,<br> mongo.find,<br> mongo.find.one,<br> mongo.remove.
蒙戈,mongo.bson参考,参考mongo.insert,参考mongo.find,:参考mongo.find.one,参考mongo.remove。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
ns <- "test.people"
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Joe")
criteria <- mongo.bson.from.buffer(buf)
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.start.object(buf, "$inc")
mongo.bson.buffer.append(buf, "age", 1L)
mongo.bson.buffer.finish.object(buf)
objNew <- mongo.bson.from.buffer(buf)
# increment the age field of the first record matching name "Joe"[增加的年龄字段的第一条记录匹配的名称“乔”]
mongo.update(mongo, ns, criteria, objNew)
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Jeff")
criteria <- mongo.bson.from.buffer(buf)
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Jeff")
mongo.bson.buffer.append(buf, "age", 27L)
objNew <- mongo.bson.from.buffer(buf)
# update the entire record to { name: "Jeff", age: 27 }[更新整个记录{名:“杰夫”,年龄:27}]
# where name equals "Jeff"[其中name =“杰夫”]
# if such a record exists; otherwise, insert this as a new reord[如果存在这样的记录,否则,将作为一个新的REORD]
mongo.update(mongo, ns, criteria, objNew,
mongo.update.upsert)
# do a shorthand update:[做速记更新:]
mongo.update(mongo, ns, list(name="John"), list(name="John", age=25))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|