mongo.get.database.collections(rmongodb)
mongo.get.database.collections()所属R语言包:rmongodb
Get a list of collections in a database
集合在一个数据库中获取列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Get a list of collections in a database on a MongoDB server.
一个MongoDB服务器上的数据库中获取列表的集合。
用法----------Usage----------
mongo.get.database.collections(mongo, db)
参数----------Arguments----------
参数:mongo
(mongo) A mongo connection object.
(蒙戈)蒙戈的连接对象。
参数:db
(string) Name of the database for which to get the list of collections.
(字符串)集合列表中的数据库的名称。
值----------Value----------
(string vector) List of collection namespaces in the given database.
(字符串向量)在给定的数据库中收集的命名空间列表。
Note this will not include the system collection db.system.indexes nor the indexes attached to the database. Use mongo.find(mongo, "db.system.indexes", limit=0L) for information on any indexes.
请注意,这将不包括系统集合db。system.indexes,也没有连接到数据库的索引。使用mongo.find(mongo, "db.system.indexes", limit=0L)上的所有索引的信息。
参见----------See Also----------
mongo.get.databases,<br> mongo.drop.database,<br> mongo.drop,<br> mongo.command,<br> mongo.rename,<br> mongo.
mongo.get.databases,参考mongo.drop.database,参考mongo.drop,参考mongo.command,参考mongo.rename,参考蒙戈。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
print(mongo.get.database.collections(mongo, "test"))
mongo.destroy(mongo)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|