Help for this page

Select Code to Download


  1. or download this
    %dbfield = (
                    'Edte' => [DATE],
    ...
                    'Excdr' => [XCDR],
                    'Eab'   => [ACCESS_BTS, ACCESS_SECTOR, ACCESS_CHANNEL]
        );
    
  2. or download this
    foreach $thing (keys %dbfield) {
                    print "the members of $thing are:\n";
    ...
                            print "\t$_\n";
               }
       }
    
  3. or download this
    #db connect, prepare, exectute goes here....
    
    ...
        #switch statement to perform calculations on values ($ref{'DATE'})
        }
    }