Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Thought the WriteResult.getLastError() should return NULL if the delete
operation was successful.

It return this

{ "n" : 1 , "connectionId" : 200 , "wtime" : 0 , "err" :  null  , "ok" : 1.0}  

The BatchData Document was deleted ok but getLastError() is not null.
how should i write the code to know if the delete was unsuccessful enter code here

try {   
  Query<BatchData> queryDeleteBatchData = mongo.createQuery(BatchData.class);   
  queryDeleteBatchData.field("uuid").equal(theBatch.uuid);    
  queryDeleteBatchData.field("senderUuid").equal(on.uuid);   

  WriteResult del = mongo.delete(queryDeleteBatchData);   

  if(del.getLastError() != null){    
     logger.error("ERROR");  
  }   

} catch (Exception e) {
  logger.error("ERROR" );
}
share|improve this question

1 Answer

up vote 2 down vote accepted

The getLastError() command is doing the correct thing. It's telling you that the action was successful (ok:1.0) and that no error occurred ("err":null).

For more details check out the recently updated docs.

getLastError() also has some functionality related to journaling and replication that you may want to investigate.


Edit:

In response to the first comment:

...
  if(del.getLastError().ok != 1.0){    
     logger.error("ERROR");  
  }   

} catch (Exception e) {
  logger.error("ERROR" );
}
share|improve this answer
that makes sense of course. How can i rebuild my code to trap the ("err":null) – Erik Oct 20 '11 at 19:31

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.