Perl - Singleline MySQL Query: Difference between revisions

From Skytech
Jump to navigation Jump to search
No edit summary
 
(No difference)

Latest revision as of 09:43, 17 June 2009


Perl singleline MySQL Query

my $sSQL = "SELECT MAX(id) FROM counters";
my $iMaxValue = $dbh2->selectrow_array($sSQL);