mongo.simple.command(rmongodb)
mongo.simple.command()所属R语言包:rmongodb
Issue a simple.command to a database on MongoDB server
将发出simple.command MongoDB服务器上的数据库
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Issue a simple command to a MongoDB server and return the response from the server.
一个简单的命令到MongoDB服务器和从服务器返回的响应。
This function supports many of the MongoDB database commands by allowing you to specify a simple command object which is entirely specified by the command name and an integer or string argument.
此功能允许你指定一个简单的命令名称和一个整数或字符串参数指定的命令对象,这是完全支持许多的MongoDB数据库命令的。
See http://www.mongodb.org/display/DOCS/List+of+Database+Commands.
请参阅http://www.mongodb.org/display/DOCS/List+of+Database+Commands。
用法----------Usage----------
mongo.simple.command(mongo, db, cmdstr, arg)
参数----------Arguments----------
参数:mongo
(mongo) A mongo connection object.
(蒙戈)蒙戈的连接对象。
参数:db
(string) The name of the database upon which to perform the command.
(字符串)后的数据库的名称来执行命令。
参数:cmdstr
(string) The name of the command.
(字符串)名称的命令。
参数:arg
An argument to the command, may be a string or numeric (as.integer).
参数的命令,可能是一个字符串或数字(as.integer)。
值----------Value----------
NULL if the command failed. Use mongo.get.last.err() to determine the cause.
返回NULL,如果该命令失败。使用mongo.get.last.err(),以确定原因。
(mongo.bson) The server's response if successful.
(mongo.bson)服务器的响应,如果成功的话。
参见----------See Also----------
mongo.command,<br> mongo.rename,<br> mongo.count,<br> mongo.drop.database,<br> mongo.drop,<br> mongo,<br> mongo.bson.
mongo.command,参考mongo.rename,参考mongo.count,参考mongo.drop.database,参考mongo.drop,参考蒙戈,参考mongo.bson。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
print(mongo.simple.command(mongo, "admin", "buildInfo", 1))
mongo.destroy(mongo)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|