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

shell command:

db.user.find({"_id" : 123456},{"a" : { "$elemMatch" : { "$or" : [ { "b" : { "$regex" : ".*d.*"}} , { "c" : { "$regex" : ".*d.*"}}]}}});

How do this query in mongodb with java driver?

share|improve this question
1  
What have you tried? What aspect of the query is unclear? Have you looked at the Java driver documentation? You might want to consider using an object mapper like Jongo which aims to allow you to "Query in Java as in Mongo shell". It's also worth noting that your non-rooted regular expression queries will not make efficient use of indexes. – Stennie Oct 14 '12 at 7:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.