Help for this page

Select Code to Download


  1. or download this
    1,apple,2005
    2,banana,2002
    3,peach,2001
    4,apple,2002
    5,nuts,2008
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    while ( my $row = $sth->fetch ) {
        print "@$row\n";
    }
    
  3. or download this
    apple,2005
    apple,2002