in reply to Re^4: NET:MySQL database connection error -- (Using password: NO) at MySQL_queryDB.pl
in thread NET:MySQL database connection error -- (Using password: NO) at MySQL_queryDB.pl

You can get result as array using one of the following functions:

$ary_ref = $dbh->selectall_arrayref($statement); $hash_ref = $dbh->selectall_hashref($statement, $key_field);
Consider to read DBI documentation. Also if you provide us with your code then asking question it would be simpler to give you useful answer.
  • Comment on Re^5: NET:MySQL database connection error -- (Using password: NO) at MySQL_queryDB.pl
  • Download Code