There is no DBI method that will reliably give you a count of the number of rows fetched. Two things I can think of to do:
1. if you intend to process all the rows of your
original fetch anyway, then just count the rows as
you process them - that is *the* most reliable way
to get a count of rows fetched.
2. use the 'count(*)' which will retrieve one column(that
being the number of rows fetched), and in this example
I assigned the count to alias 'count':
$dbh->{RaiseError} = 1; # save having to check each method call
my $sql = qq{
SELECT count(*) as count
FROM your_table
WHERE one_of_the_columns = something
};
my $sth = $dbh->prepare($sql);
$sth->execute;
my ($count) = $sth->fetchrow_array;
if ($count == 0) {
print "NO rows fetched!\n";
}
HTH.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.