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

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

[复制链接]
发表于 2012-9-27 00:14:57 | 显示全部楼层 |阅读模式
mongo.cursor.value(rmongodb)
mongo.cursor.value()所属R语言包:rmongodb

                                        Fetch the current value of a cursor
                                         取当前值的游标

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

mongo.cursor.value(cursor) is used to fetch the current record belonging to a<br> mongo.find() query.
mongo.cursor.value(cursor)用于获取当前记录属于一个<br> mongo.find()查询。


用法----------Usage----------


mongo.cursor.value(cursor)



参数----------Arguments----------

参数:cursor
(mongo.cursor) A mongo.cursor object returned from mongo.find().
(mongo.cursor),一个mongo.cursor返回的对象从mongo.find()。


值----------Value----------

(mongo.bson) The current record of the result set.
(mongo.bson)的结果集的当前记录。


参见----------See Also----------

mongo.find,<br> mongo.cursor,<br> mongo.cursor.next,<br> mongo.cursor.value,<br> mongo.cursor.destroy,<br> mongo.bson.
mongo.find,参考mongo.cursor,参考mongo.cursor.next,参考mongo.cursor.value,参考mongo.cursor.destroy,:参考mongo.bson。


实例----------Examples----------


mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
    buf <- mongo.bson.buffer.create()
    mongo.bson.buffer.append(buf, "city", "St. Louis")
    query <- mongo.bson.from.buffer(buf)

    # Find the first 1000 records in collection people[第1000条记录中收集的人]
    # of database test where city == "St. Louis"[数据库的测试,其中城市==“圣路易斯”]
    cursor <- mongo.find(mongo, "test.people", query, limit=1000L)
    # Step though the matching records and display them[虽然步骤匹配的记录,并显示它们]
    while (mongo.cursor.next(cursor))
        print(mongo.cursor.value(cursor))
    mongo.cursor.destroy(cursor)
}

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-24 07:08 , Processed in 0.019662 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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