Advertisement
Guest User

Untitled

a guest
Sep 17th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // a valid id obtained before
  2. collection.find({"id":id}, function(err, result) {
  3. if(err) {
  4. console.log("Could not select");
  5. } else {
  6. console.log("Select successful for id: " + id);
  7. console.log(result);
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement