Help for this page

Select Code to Download


  1. or download this
     my $select = $dbh->prepare("select path from application_table where 
    +number = ? ORDER BY some_other_number");
    
    ...
                            print "path: $_\n";
            }
    }
    
  2. or download this
     my $select = $dbh->prepare("select path from application_table where 
    +number = ? ORDER BY some_other_number");
    
    ...
    while(my($path) = $select->fetchrow_array) {
        print "PATH: $path\n";
    }