I am wondering how you can print the results from the following Perl code snippet:
$sth = $dbh->prepare("SELECT * FROM table_name");
$sth->execute();
I'd like to see what you would see if you typed "SELECT * FROM table_name; into mySQL and had the entire relation show up. Is there a return value from $sth that can be looped over and printed out?