mongo.timestamp(rmongodb)
mongo.timestamp()所属R语言包:rmongodb
The mongo.timestamp class
mongo.timestamp类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Objects of class "mongo.timestamp" are an extension of the POSIXct class. They have their increment value stored in the "increment" attribute of the object.
对象的类“mongo.timestamp”是一个扩展的POSIXct类的。他们有他们的增量值存储在“增量”的属性的对象,。
See http://www.mongodb.org/display/DOCS/Timestamp+Data+Type
见http://www.mongodb.org/display/DOCS/Timestamp+Data+Type
mongo.timestamp objects have "mongo.timestamp", "POSIXct" & "POSIXt" as their class so that mongo.bson.buffer.append() may detect them and append the appropriate BSON code-typed value to a buffer.
mongo.timestamp对象有“mongo.timestamp”,“POSIXct”&“POSIXt”作为自己的类,使mongo.bson.buffer.append()可以检测到它们,并添加适当的BSON类型的代码值的缓冲区。
These mongo.timestamp values may also be present in a list and will be handled properly by mongo.bson.buffer.append.list() and mongo.bson.from.list().
也可以这些mongo.timestamp值可能出现在列表中,会得到妥善的处理mongo.bson.buffer.append.list()和mongo.bson.from.list()。
参见----------See Also----------
mongo.timestamp.create,<br> mongo.bson.buffer.append,<br> mongo.bson.buffer.append.list,<br> mongo.bson.buffer,<br> mongo.bson.
mongo.timestamp.create,参考mongo.bson.buffer.append,参考mongo.bson.buffer.append.list,:参考mongo.bson.buffer,mongo.bson参考。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
buf <- mongo.bson.buffer.create()
# special Null timestamp -- automatically filled in [特殊的NULL时间戳 - 自动填充]
# if one of first two fields in a record[如果一个记录中的前两个字段]
ts <- mongo.timestamp.create(0,0)
mongo.bson.buffer.append(buf, "InsertTime", ts)
mongo.bson.buffer.append(buf, "name", "Joe")
b <- mongo.bson.from.buffer(buf)
mongo.insert(mongo, "test.people", b)
# create using a POSIXlt[创建一个POSIXlt]
ts <- mongo.timestamp.create(strptime("05-12-2012",
"%m-%d-%Y"), increment=1)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|