Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9215255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T02:09:50+00:00 2026-06-18T02:09:50+00:00

I try to execute this query with perl on a MongoDB database : $db->$collection->find({_id

  • 0

I try to execute this query with perl on a MongoDB database :

$db->$collection->find({"_id" : { "$in" : ["4f520122ecf6171327000137", "4f4f49c09d1bd90728000034"]}});

But it return nothing and it must return two documents. What is wrong with this query ?

Thank you.

Edit : It doesn’t work too :

$db->$collection->find( {_id => "4f520122ecf6171327000137"} );
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T02:09:51+00:00Added an answer on June 18, 2026 at 2:09 am

    First, make sure you’re using the correct syntax. Your first example is not valid Perl code, since you’re including a chunk of JSON as the query parameter.

    Second, assuming these ID values are MongoDB ObjectID’s, you’ll need to make OID objects in order to differentiate them from ordinary strings. And make sure to use single quotes ('') around $in, otherwise Perl will try to interpolate $in as a variable (which presumably has nothing in it).

    So I assume you want to do something like this:

    $db->$collection->find( {
        "_id" => { 
            '$in' => [ MongoDB::OID->new( value => "4f520122ecf6171327000137" ), 
                       MongoDB::OID->new( value => "4f4f49c09d1bd90728000034" )
                     ]
                 } 
    } );
    

    Edit: Additionally, using autoloaded method names to retrieve collections has been deprecated for a while. You’re better off using $db->get_collection( "collection name" )->find( ... )

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to execute this sqlite3 query in Python. I reduced the code to
I try to execute a simple query like this: $tot = Yii::app()->db->createCommand() ->select('sum(field)') ->from('products')
When I try to execute this DQL query: SELECT r, s FROM Rule r
MySQL is issuing this error when I try to execute a query where the
I try to execute this query $qb = $this->_em->createQueryBuilder(); $qb->select(array('c', 'ld')) ->from('Model\Entity\Company', 'c') ->leftJoin('c.legaldetails',
I try to execute this query in my CompanyRepository $qb = $this->_em->createQueryBuilder(); $qb->select(array('c', 'ld'))
When I try to execute this statement in Oracle SQL Developer 2.1 a dialog
Okay, I'm getting this error when I try to execute this procedure. The thing
This is what I try to execute: CREATE TABLE order ( o_id INTEGER not
I'm trying to modify a voting script(Thumbsup) I need this query to only return

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.