Help for this page

Select Code to Download


  1. or download this
    #!perl
    use strict;
    ...
      $hash{$f[0]}{$f[1].$f[2]}{$f[3]} = 1
    }
    print Dumper(\%hash);
    
  2. or download this
    sub create_db {
      unlink 'mydb.sqlite' if -e 'mydb.sqlite';
    ...
      
      return $dbh;
    }