Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm calling collection update from ruby driver to mongodb and gets a return code 117. How do I generally interpret the error codes that I get?

share|improve this question
Good question. I'd start looking at ruby driver's source code. – Sergio Tulentsev Jun 17 '12 at 11:39
can you include the snippet of your code that returns this? – Asya Kamsky Jun 17 '12 at 14:02

1 Answer

up vote 1 down vote accepted

If you are using safe mode, the update method returns a hash containing the output of getLastError. However, when you are not using safe mode, we simply return the number of bytes that were sent to the server.

# setup connection & get handle to collection
connection = Mongo::Connection.new
collection = connection['test']['test']

# remove existing documents
collection.remove
=> true

# insert test document
collection.insert(:_id => 1, :a => 1)
=> 1
collection.find_one
=> {"_id"=>1, "a"=>1}

# we sent a message with 64 bytes to a mongod
collection.update({_id: 1},{a: 2.0})
=> 64 # number of bytes sent to server

# with safe mode we updated one document -- output of getLastError command
collection.update({_id: 1},{a: 3.0}, :safe => true)
=> {"updatedExisting"=>true, "n"=>1, "connectionId"=>19, "err"=>nil, "ok"=>1.0}

This is something that could be made clearer in the documentation. I will update it for the next ruby driver release.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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