mongo.cursor(rmongodb)
mongo.cursor()所属R语言包:rmongodb
The mongo.cursor class
mongo.cursor类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Objects of class "mongo.cursor" are returned from mongo.find() and used to iterate over the records matching the query.
对象的类“mongo.cursor”返回mongo.find()和用来遍历查询相匹配的记录。
mongo.cursor.next(cursor) is used to step to the first or next record.
mongo.cursor.next(cursor)步骤的第一个或下一个记录。
mongo.cursor.value(cursor) returns a mongo.bson object representing the current record.
mongo.cursor.value(cursor)返回一个mongo.bson,表示当前记录的对象。
mongo.cursor.destroy(cursor) releases the resources attached to the cursor.
mongo.cursor.destroy(cursor)释放附着在光标上的资源。
mongo.cursor objects have "mongo.cursor" as their class and contain an externally managed pointer to the actual cursor data. This pointer is stored in the "mongo.cursor" attribute of the object.
mongo.cursor的对象“mongo.cursor”作为自己的类,包含外部管理的指针光标的实际数据。该指针被存储在“mongo.cursor”属性的对象。
参见----------See Also----------
mongo.find,<br> mongo.cursor.next,<br> mongo.cursor.value,<br> mongo.cursor.destroy.
mongo.find,参考mongo.cursor.next,参考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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|