Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare( 
    'select * from mytable order by col_3' 
    ...
    while( my $aref = $sth->fetch ) {
        print "@$aref";
    }
    
  2. or download this
    my $sth = $dbh->prepare( 
    'select * from mytable order by ?' 
    ...
    while( my $aref = $sth->fetch ) {
        print "@$aref";
    }