Help for this page

Select Code to Download


  1. or download this
    @dates = `mysqlshow --password=\'xxxxxxx\' pzbg001`;
    shift @dates;
    ...
            $date =~ s/Tables//g;
            $date =~ s/\+//g;
    ...
    
  2. or download this
    @dates = map { /^\|\s+([\d_]+)\s+\|$/ } `mysqlshow --...`
    
  3. or download this
       $query = "select $result from $date where inintf=$inint";
    
  4. or download this
    # get the list of tables (table names are \d+_\d+_\d+):
    my @dates = map { /^\|\s+([\d_]+)\s+\|$/ } `mysqlshow --...`
    ...
    my $myimage = $mygraph->plot(\@data) or die $mygraph->error;
    
    # and on to the web page...