in reply to Re^3: XML File Creation in Perl
in thread XML File Creation in Perl
Changes which i didwhile (<DB1>) { chomp; my ($root, $table, $header,$key) = split /\t/; $xml_data->{$root}{$table}{NEW1}{$key} = [$key]; } while (<DB2>) { chomp; my ($root, $table, $header,$key) = split /\t/; $xml_data->{$root}{$table}{NEW2}{$key} = [$key]; } while (<DIFF>) { chomp; my ($root, $table, $key, $col, $old, $new) = split /\t/; $xml_data->{$root}{$table}{MODIFIED}{KEY}{$key}{$col}{oldvalue} = [$ol +d]; $xml_data->{$root}{$table}{MODIFIED}{KEY}{$key}{$col}{newvalue} = [$ne +w]; }
1) Removed the db1 and db2 code as it is not required.
2. Old code
New code$xml_data->{$root}{$table}{NEW2} = [$key];
This was required as if there are multiple rows were there for a table which were overwritten with last value as the root, table combination already exists. So from the result set it displayed only the last row in the xml. Now the last problem is$xml_data->{$root}{$table}{NEW2}{$key} = [$key];
the data is displayed as (Suppose Key value is ABC)$xml_data->{$root}{$table}{NEW2}{$key} = [$key];
but it should be<ABC>ABC</ABC>
This is coming because i added the key value for key only meaning code is working as expected, but i want KEY to be displayed instead of value<KEY>ABC</KEY>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: XML File Creation in Perl
by kcott (Archbishop) on Apr 17, 2013 at 06:34 UTC | |
by documents9900 (Initiate) on Apr 17, 2013 at 07:19 UTC | |
by kcott (Archbishop) on Apr 17, 2013 at 07:25 UTC |