Hello esteemed Monks,

I'm stuck yet again and need some assistance. As usual, it's my nemesis - Hashes. Why I battle with these as much as I do is really beyond me - it's certainly not a lack of reading FAQ's, PerlDOCs and all manner of other sources of information.
Essentially, I'm trying to write to a database, all the items of software on a z/OS mainframe. Thanks to some help from you all (Help with attributes and XML::Simple) I have managed to progress to the following hash:
$VAR1 = { 'Product' => { 'Unicenter CA-Deliver Output Management' => { 've +ndorUniqueKeyRef' => 'CA', 'sw +UniqueKey' => 'RMO', 'de +scription' => 'Unicenter CA-Deliver Output Management' }, 'Unicenter CA-JCLCheck Utility' => { 'vendorUniqu +eKeyRef' => 'CA', 'swUniqueKey +' => 'JCLCHECK', 'description +' => 'Unicenter CA-JCLCheck Utility' }, 'EREP Environmental Recording Edit Print' => { 'v +endorUniqueKeyRef' => 'IBM', 's +wUniqueKey' => 'EREP', 'P +roductVersion' => { + 'version' => '3', + 'swUniqueKey' => '5658-260', + 'name' => 'EREP Environmental Recording Edit Print' +, + 'versionNumber' => '03' + }, 'd +escription' => 'EREP Environmental Recording Edit Print' }, 'SYSQL' => { 'vendorUniqueKeyRef' => 'SPLWDGRP', 'swUniqueKey' => 'SYSQL', 'ProductVersion' => { 'ProductVersionR +elease' => { + 'releaseNumber' => '01', + 'swUniqueKey' => 'SYSQL-21', + 'name' => 'SYSQL', + 'release' => '1' + }, 'version' => '2' +, 'swUniqueKey' => + 'SYSQL-2', 'name' => 'SYSQL +', 'versionNumber' +=> '02' }, 'description' => 'SYSQL' }, '3270-PC File Transfer Program' => { 'vendorUniqu +eKeyRef' => 'IBM', 'swUniqueKey +' => '3270PCFT', 'description +' => '3270-PC File Transfer Program' }, 'Tivoli OMEGAMON XE on z/OS' => { 'vendorUniqueKe +yRef' => 'IBM', 'swUniqueKey' = +> 'OMXEZO', 'ProductVersion +' => { + 'version' => '3', + 'swUniqueKey' => '5698-A59', + 'name' => 'Tivoli OMEGAMON XE on z/OS', + 'versionNumber' => '03' + }, 'description' = +> 'Tivoli OMEGAMON XE on z/OS' }, 'Tivoli OMEGAMON XE for Messaging for z/OS' => +{ +'vendorUniqueKeyRef' => 'IBM', +'swUniqueKey' => 'OMXEMES', +'description' => 'Tivoli OMEGAMON XE for Messaging for z/OS' }, 'DB2 Utilities Suite for z/OS' => { 'vendorUnique +KeyRef' => 'IBM', 'swUniqueKey' + => 'DB2UTSU', 'ProductVersi +on' => { + 'DB2 Utilities Suite for z/OS' => { + 'swUniqueKey' => '5655-N97', + 'version' => '9', + 'versionNumber' => '09' + }, + 'DB2 Utilities Suite' => { + 'swUniqueKey' => '5697-E98', + 'version' => '7', + 'versionNumber' => '07' + } + }, 'description' + => 'DB2 Utilities Suite for z/OS' }, 'UMB' => { 'vendorUniqueKeyRef' => 'CSC', 'swUniqueKey' => 'CSCUMB', 'description' => 'UMB' } } };

Initially, all was good and I had the following:
my $sw = $xmldoc->{'Catalog'}->{'Products'}; my %sw = %{ $sw->{'Product'}}; foreach my $product (keys %sw) { print "Now processing $product\n"; my $version; my $release; my $description = $sw{$product}{'description'}; my $vendorUniqueKeyRef = $sw{$product}{'vendorUniqueKeyRef'}; my $swUniqueKey = $sw{$product}{'swUniqueKey'}; if ($sw{$product}{'ProductVersion'}) { $version = $sw{$product}{'ProductVersion'}{'version'}; if ($sw{$product}{'ProductVersion'}{'ProductVersionRelease'}) +{ $release = $sw{$product}{'ProductVersion'}{'ProductVersion +Release'}{'release'}; } else { $release = 0; } } else { $version = 0; $release = 0; } my $fullVersion = "$version.$release"; print " ***************\n The product is: $product\n The description is: $description\n The vendorUniqueKeyRef is: $vendorUniqueKeyRef\n The ProductVersion is: $fullVersion\n The swUniqueKey is: $swUniqueKey\n ***************\n"; };

However, I kept getting an error about using uninitialised variables while using strict. I realised that some software had versions like ".2" instead of "2.2" and then saw that I was not properly handling the fact that some products are installed twice with different versions, something which I had stupidly not catered for. I tried to fix that, only to find that not all version versions have a release, which I had tried to cater for, but only if they had been installed once.......
I've read up a load on getting data out of a HoH as well as an AoH, but I can't come right with this.
Essentially I'm trying to get a listing of all the software installed out of this hash into the database using DBD::ODBC (which I already have working for the rest of my program) whether it has a version, multiple versions, versions and releases, multiple versions and no releases, multiple vers...... Well you get the idea.......
I'd appreciate any help that anybody could give as weel as any advice on my current style and error checking.

Regards,
Smaug.
Peddle faster monkeys!! I need more power!!

In reply to Iterative HOH or AOH? by Smaug

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.