in reply to (tye)Re: Testing to see if a MySQL query is true
in thread Testing to see if a MySQL query is true
my $results = $dbh->selectall_arrayref($sql_statement); if (@$results) { open... print... print ... join("\t", @$_),"\n" for @$results; print... close... }
|
|---|