Help for this page

Select Code to Download


  1. or download this
    SELECT column1, column2, ..
    
  2. or download this
    while ( my $href  = $sth->fetchrow_hashref() ) {
       my $col1 = $href->{column1};
       my $col2 = $href->{column2};
       ...
    }