找回密码
 注册
查看: 844|回复: 0

R语言 rmongodb包 mongo.update()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-27 18:58:20 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-24 10:51 , Processed in 0.022864 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表