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 6682985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:46:08+00:00 2026-05-26T04:46:08+00:00

Code- $col1->insert(_id => ‘100’, results => { result => 1, when => sunday }

  • 0

Code-

$col1->insert("_id" => '100',
    "results" => {
        "result" => "1",
        "when" => "sunday"  
    }
);  

the error is-

Can't use string ("100") as a HASH ref while "strict refs" in use at /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/MongoDB/Collection.pm line xyz.

What is wrong here?

  • 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-05-26T04:46:09+00:00Added an answer on May 26, 2026 at 4:46 am

    The insert method in MongoDB::Collection wants a hash-ref, not a list. You want to say this:

    $col1->insert({
        "_id" => '100',
        "results" => {
            "result" => "1",
            "when" => "sunday"  
        }
    });
    

    Note the ({ and }). The insert method actually takes hash-ref arguments. So inside insert, it will do something like this:

    my ($self, $obj, $opts) = @_;
    if($opts) {
        # Do things like $opts->{multi} ...
    }
    

    But your original call will put '_id' in $obj and '100' in $opts and that’s where your error message comes from. Keep in mind that => is just another way of saying , so your insert call was really:

    $col1->insert("_id", '100', "results', { ... });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: UPDATE myTable SET Col1 = @Value However, I have
I am running this sort of query: insert into mytable (id, col1, col2) values
I have a piece of code which allows me to take a single string
insert into XYZ(col1, col2) values (1,2) update XYZ set ... where col1 = 1
I tried to insert a base64 encoded string into my SQLite database, but when
Code: create table coltype (coltype varchar(5)); insert into coltype values ('typ1'); create table colsubtype
The html code source order should look like this: <body> <div>col2</div> <div>col3</div> <div>col1</div> <div>col4</div>
I am getting this JSON string from an ASP.Net webservice: {d:{Table:[{col1:123,col2:name,col3:name,col4:100,col5:\/Date(1153033200000)\/},{col1:123,col2:name,col3:name,col4:101,col5:\/Date(1153033200000)\/},{col1:123,col2:name,col3:name,col4:102,col5:\/Date(1153033200000)\/}]}} In my jQuery
I've been getting the error Conversion failed when converting from a character string to
I want to insert data in MYSQL database using python here my code import

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.