mongo.bson.buffer.append.time(rmongodb)
mongo.bson.buffer.append.time()所属R语言包:rmongodb
Append a time value into a mongo.bson.buffer
附加一个时间值,到一个mongo.bson.buffer中
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Append a date/time value into a mongo.bson.buffer.
附加一个日期/时间值到一个mongo.bson.buffer中。
BSON has a special field type to indicate a date/time; these are 64-bit values.
BSON有一个特殊的字段类型来表示日期/时间,这些都是64位的值。
However, R has a 'standard' object of class "POSIXct" used to represent date/time values, such as that returned by Sys.time(). Internally these are a 32-bit integer number of milliseconds since midnight January 1, 1970. On January 19, 2038, 32-bit versions of the the Unix time stamp will cease to work, as it will overflow the largest value that can be held in a signed 32-bit number. At such time, many applications, including R and this driver, will need to address that issue.
然而,R类“POSIXct”用于代表日期/时间值,如由Sys.time()返回一个“标准”的对象。内部,这是一个32位的整数1970年1月1日午夜以来的毫秒数。 2038年1月19日,32位版本的Unix时间戳将停止工作,因为它会溢出的最大价值,可以举行一个32位有符号数。在这样的时间,许多应用程序,包括R和该驱动程序,将需要解决这一问题。
用法----------Usage----------
mongo.bson.buffer.append.time(buf, name, time)
参数----------Arguments----------
参数:buf
(mongo.bson.buffer) The buffer object to which to append.
(mongo.bson.buffer)缓冲器,附加的对象。
参数:name
(string) The name (key) of the field appended to the buffer.
(字符串)名称(键)的字段附加到缓冲区。
参数:time
(integer) A time value. This may also be an object of<br> class "POSIXct", "POSIXlt" or "mongo.timestamp".
(整数)的时间值。这也可能是一个目的参考类“POSIXct”,:“POSIXlt”或“mongo.timestamp”。
值----------Value----------
TRUE if successful; otherwise, FALSE if an error occured appending the data.
TRUE,如果成功,否则,FALSE,如果发生了错误,附加数据。
参见----------See Also----------
mongo.timestamp,<br> mongo.timestamp.create,<br> mongo.bson.buffer.append,<br> mongo.bson.buffer,<br> mongo.bson.
mongo.timestamp,参考mongo.timestamp.create,参考mongo.bson.buffer.append,:参考mongo.bson.buffer,mongo.bson参考。
实例----------Examples----------
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append.time(buf, "Now", Sys.time())
b <- mongo.bson.from.buffer(buf)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|