Please try to reduce your code down to the minimum needed to reproduce the issue - see SSCCE. Like this:

use warnings; use strict; use Data::Dump; { package Foo; use Moose; has 'Fields' => (is => 'rw', isa => 'HashRef'); } my $foo = Foo->new(Fields=>{}); $foo->Fields->{x}++; dd $foo->Fields; # prints { x => 1 } #$foo->Fields = 0; # wrong, fails $foo->Fields({}); dd $foo->Fields; # prints {}

The problem is that $foo->Fields is a method call, to which you cannot assign anything ($foo->Fields = ...;) by default; it's as if you had written sin($pi) = 123;. The normal way to set an object property is to pass its new value as an argument to the method, as I showed above: $foo->Fields({});

There is a way to make methods that you can assign to in Perl, Lvalue subroutines, but at least in my experience they seem to be pretty uncommon. I suggest you stick to normal setter calls.

Also, let me repeat Mr. Muskrat's suggestion to look into DBIx::Class instead of reinventing that wheel.


In reply to Re: Clearing a hash reference by haukex
in thread Clearing a hash reference by jorba

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.