in reply to Re: Dereferencing fetchall_arrayref({})
in thread Dereferencing fetchall_arrayref({})

You fell into the old uc trap. uc returns a value, it doesn't modify in place.


Dave

  • Comment on Re: Re: Dereferencing fetchall_arrayref({})

Replies are listed 'Best First'.
Re: Dereferencing fetchall_arrayref({})
by b10m (Vicar) on Apr 25, 2004 at 22:09 UTC

    Ok, this then?

    ${$_}{'title'} = uc(${$_}{'title'}) if(${$_}{'title'} eq "large");
    --
    b10m

    All code is usually tested, but rarely trusted.