Help for this page

Select Code to Download


  1. or download this
    while( my( $key, $value ) = each %db_stru ) {
        print "$key contains tables:\n";
        print "\t$_:" foreach @{$value};
    }
    
  2. or download this
    while( my( $key, $value ) = each %db_stru ) {
        my $out = "$key contains tables:\n";
        $out .= "\t$_:" foreach @{$value};
        print "$out\n";
    }
    
  3. or download this
    {
        local $" = ":\t";
    ...
            print "$key contains tables:\n\t@{$value}\n"
        }
    }