Doing everything in the database using SQL statements — as suggested by others here — is a very good option if you are just working within the database itself (i.e. inserting, updating).
However, you posted your question to a Perl forum, not a SQL forum, so I will assume that you need to do something with the data in Perl. As such, you actually need to fetch table data (rather than table
metadata such as that returned by commands such as
$sth->rows).
To do this, you need to make sure that your statement handle is correctly formulated to return the data you want, and then you will use some version of
fetchrow:
my $key_count;
while ( my ( $keys ) = $sth->fetchrow_array ) {
$key_count += $keys;
}
# Do something with the total $key_count
Hopefully, this is enough to point you in the right direction.
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.