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


in reply to Re^4: Perl XML::Smart Out of memory! error
in thread Perl XML::Smart Out of memory! error

opps.. shoudl have been bit clear in previous post. if tag is missing then $f[3] = eval { $elt->first_child('Description[@langid="1"]')->att('Value'); }; Works.But if tags are not closed properly like
<Category ID="1" LowPic="" Score="0" Searchable="0" ThumbPic="" UNCA +TID="" Visible="0"> <Name ID="0" Value="" langid="1"/> <ParentCategory ID="1"/> </Category>
then i get an error..If i delete this .then it works.Otherwose it throws an error as mentioned earlier.

Replies are listed 'Best First'.
Re^6: Perl XML::Smart Out of memory! error
by Anonymous Monk on Apr 29, 2014 at 02:15 UTC
    Well, you could also eval { $sth->execute(@f); }; </c> that way if @f is missing stuff that just has to be there, like langid, you can ignore the raised error (eval catches it)