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