http://www.perlmonks.org?node_id=1015854


in reply to Re^2: perl xml format question
in thread perl xml format question

Are you using an oldish version of XML::LibXML perhaps?

The ability to handle an element's attributes like a hash was only added in 1.91 IIRC.

You can use setAttribute in older versions.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^4: perl xml format question
by Anonymous Monk on Jan 29, 2013 at 16:51 UTC

    Thanks, i was using an older version since ppm was only able to find/install the older version (XML::LibXML 1.7). After using setAttribute i was able to get the desired output. My database error is also gone. Thank you Tobyink