mongo.cursor.next(rmongodb)
mongo.cursor.next()所属R语言包:rmongodb
Advance a cursor to the next record
提前光标移动到下一个记录
译者:生物统计家园网 机器人LoveR
描述----------Description----------
mongo.cursor.next(cursor) is used to step to the first or next record.
mongo.cursor.next(cursor)步骤的第一个或下一个记录。
mongo.cursor.value(cursor) may then be used to examine it.
mongo.cursor.value(cursor)可能会被用于进行检查。
用法----------Usage----------
mongo.cursor.next(cursor)
参数----------Arguments----------
参数:cursor
(mongo.cursor) A mongo.cursor object returned from mongo.find().
(mongo.cursor),一个mongo.cursor返回的对象从mongo.find()。
值----------Value----------
TRUE if there is a next record; otherwise, FALSE.
TRUE,如果有下一个记录,否则为false。
参见----------See Also----------
mongo.find,<br> mongo.cursor,<br> mongo.cursor.value,<br> mongo.cursor.destroy.
mongo.find,<BR> mongo.cursor,参考mongo.cursor.value,参考mongo.cursor.destroy。
实例----------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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|