mongo.insert(rmongodb)
mongo.insert()所属R语言包:rmongodb
Add record to a collection
添加记录的集合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add record to a collection.
将记录添加到集合中。
See http://www.mongodb.org/display/DOCS/Inserting.
请参阅http://www.mongodb.org/display/DOCS/Inserting。
用法----------Usage----------
mongo.insert(mongo, ns, b)
参数----------Arguments----------
参数:mongo
(mongo) a mongo connection object.
(蒙戈)蒙戈的连接对象。
参数:ns
(string) namespace of the collection to which to add the record.
(字符串)的集合,将记录添加到命名空间。
参数:b
(mongo.bson) The record to add. In addition, b may be a list which will be converted to a mongo.bson object by mongo.bson.from.list().
(mongo.bson)记录的补充。此外,b可能是由mongo.bson.from.list()到mongo.bson对象的列表将被转换。
值----------Value----------
TRUE if the command was successfully sent to the server; otherwise, FALSE.
TRUE如果命令被成功发送到服务器,否则返回FALSE。
mongo.get.last.err() may be examined to verify that the insert was successful on the server if necessary.
mongo.get.last.err()可以进行检查,以核实,如有必要,在服务器上插入成功。
参见----------See Also----------
mongo.insert.batch,<br> mongo.update,<br> mongo.find,<br> mongo.find.one,<br> mongo.remove,<br> mongo.bson,<br> mongo.
mongo.insert.batch,参考mongo.update,参考mongo.find,参考mongo.find.one,参考mongo.remove,参考mongo.bson,< BR>蒙戈。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
ns <- "test.people"
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "name", "Joe")
mongo.bson.buffer.append(buf, "age", 22L)
b <- mongo.bson.from.buffer(buf)
mongo.insert(mongo, ns, b)
# do the same thing in shorthand:[在高地以速记法做同样的事情:]
mongo.insert(mongo, ns, list(name="Joe", age=22L))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|