Help for this page

Select Code to Download


  1. or download this
    package My::DB;
    use strict;
    ...
        return $dbh; 
      
    }
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    while ( my @row = $sth_select->fetchrow ) {
            print "@row \n";
    }