Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my $sth = $dbh->prepare( "SELECT COUNT(*) FROM table WHERE usernam +e != \"me\"" ) or die DBI->errstr; $sth->execute( ) or die DBI->errstr; my ( $count ) = $sth->fetchrow_array();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: MySQL Errors
by rob_au (Abbot) on Nov 17, 2001 at 11:30 UTC | |
by biograd (Friar) on Nov 19, 2001 at 10:04 UTC |