mongo.rename(rmongodb)
mongo.rename()所属R语言包:rmongodb
Rename a collection on a MongoDB server
在MongoDB服务器重命名的集合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Rename a collection on a MongoDB server.
在MongoDB服务器重命名的集合。
Note that this may also be used to move a collection from one database to another.
请注意,这也可能被用于移动从一个数据库到另一个集合。
用法----------Usage----------
mongo.rename(mongo, from.ns, to.ns)
参数----------Arguments----------
参数:mongo
(mongo) A mongo connection object.
(蒙戈)蒙戈的连接对象。
参数:from.ns
(string) The namespace of the collection to rename.
(字符串)的命名空间的集合进行重命名。
参数:to.ns
(string) The new namespace of the collection.
(字符串)的新的命名空间的集合。
值----------Value----------
TRUE if successful; otherwise, FALSE.
TRUE如果成功,否则返回FALSE。
参见----------See Also----------
mongo.drop.database,<br> mongo.drop,<br> mongo.command,<br> mongo.count,<br> mongo.
mongo.drop.database,参考mongo.drop,参考mongo.command,参考mongo.count,参考蒙戈。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
print(mongo.rename(mongo, "test.people", "test.humans"))
mongo.destroy(mongo)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|