Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("SELECT foo,bar FROM baz");
    $sth->execute;
    ...
      print join "\t", @row;
      print "\n";
    }
    
  2. or download this
    my $sth = $dbh->prepare("SELECT foo,bar FROM baz");
    $sth->execute;
    ...
    }
    print $query->scrolling_list(-name   => 'list_name',
                                 -values => [@data]);