I am using the mongo-cpp driver trying to convert the object ID of a BSON object to a string

BSONObj r=some_function();
BSONElement oi;
r.getObjectID(oi);
OID o=oi.__oid();
cout<<"oid:"<<o.toString()<<endl;`

I am sure that the BSONObj has valid data but getting the following error

BSONElement: bad type #somenumber ##`

link|improve this question
Check that the object's ID is actually of OID type. Or use a checked OID() call instead of __oid(). – dimitri Jan 28 at 8:02
still getting the same error. Am i using the function getObjectID correctly? The API documentation doesn't explain enough on it. – mayank_gupta Jan 28 at 8:17
Try this: std::string oid = r["_id"].OID().toString(); – dimitri Jan 28 at 12:30
It still didn't work. The function OID() isn't defined in the BSONElement class . – mayank_gupta Jan 28 at 17:04
I figured out my mistake and have added an answer. Thanks for your help. – mayank_gupta Jan 30 at 18:10
feedback

1 Answer

The query object returns a pointer to the buffer where the BSONObj is stored. I went wrong when I did not use the function BSONObj::getOwned() to request a copy of the BSONObj which was causing the exception.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.