Help for this page

Select Code to Download


  1. or download this
    #!perl
    use strict;
    ...
                 GROUP BY A,B,C,D
                 ORDER BY A,B,C,D';
    report($dbh,$query);
    
  2. or download this
    sub report {  
      my ($dbh,$sql) = @_;
    ...
      $dbh->do($sql) or die $DBI::errstr;
      return $dbh;
    }