Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my $data = qq[SELECT COUNT(*) FROM questions WHERE `q1` = "upright"]; my $sth = $dbh->prepare($data); $sth->execute() or die $sth->errstr; print $sth;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Getting a count of all rows in MySQL
by graff (Chancellor) on Nov 30, 2008 at 23:23 UTC | |
by spmlingam (Scribe) on Dec 01, 2008 at 07:52 UTC | |
|
Re: Getting a count of all rows in MySQL
by Anonymous Monk on Nov 30, 2008 at 23:22 UTC | |
|
Re: Getting a count of all rows in MySQL
by brsaravan (Scribe) on Dec 01, 2008 at 07:03 UTC |