Learn R Programming

rmongodb (version 1.8.0)

mongo.bson.buffer.append.bson: Append a mongo.bson object into a mongo.bson.buffer

Description

Append a mongo.bson object into a mongo.bson.buffer as a subobject.

Usage

mongo.bson.buffer.append.bson(buf, name, value)

Arguments

buf
(mongo.bson.buffer) The buffer object to which to append.
name
(string) The name (key) of the subobject field appended to the buffer.
value
(mongo.bson) a mongo.bson object.

Value

TRUE if successful; otherwise, FALSE if an error occured appending the data.

Details

Note that mongo.bson.buffer.append() will detect if its value parameter is a mongo.bson object and perform the same action as this function.

See Also

mongo.bson, mongo.bson.buffer, mongo.bson.from.list, mongo.bson.buffer.append.

Examples

Run this code
name <- mongo.bson.from.list(list(first="Joe", last="Smith"))
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append.bson(buf, "name", name)
mongo.bson.buffer.append.string(buf, "city", "New York")
b <- mongo.bson.from.buffer(buf)

# the above will create a mongo.bson object of the following form:
# { "name" : { "first" : "Joe", "last" : "Smith" }, "city" : "New York" }

Run the code above in your browser using DataLab