Help for this page

Select Code to Download


  1. or download this
    package SQL;
    use DBI;
    ...
        $sth         = $dbh->prepare($sCommand);
        $sth->execute ();
    }
    
  2. or download this
    use SQL;
    
    ...
    {
        print "$_\n";
    }
    
  3. or download this
    use SQL;
    my @tables;
    ...
    {
        print "$_\n";
    }
    
  4. or download this
    sub PopList
    {
    ...
        my $cboList    = shift(@_);
        PopList $cboList, "SELECT * FROM agent ORDER BY agent"
    }