vote up 3 vote down star

The following code seems to be just too much, for getting a single count value. Is there a better, recommended way to fetch a single COUNT value using plain DBI?

sub get_count {
   my $sth = $dbh->prepare("SELECT COUNT(*) FROM table WHERE...");
   $sth->execute( @params );
   my $($count) = $sth->fetchrow_array;
   $sth->finish;

   return $count;
}

This is shorter, but I still have two statements.

sub get_count_2 {
   my $ar = $dbh->selectall_arrayref("SELECT ...", undef, @params)
   return $ar->[0][0];
}
flag

63% accept rate
1  
This is a little subjective. Some would say that your longer example is more readable. Are we playing Perl Golf? – pavium Nov 1 at 9:58
3  
Does it matter how many statements you have? – brian d foy Nov 1 at 11:43
I have many such calls in my code so I have a sub that gets the SQL statement and the @params and returns the count. If I had a built-in statement for that in DBI then I don't need the extra sub. I think it is a common use case and I was wondering if there was such a statement and I missed it or if there is no such statement in DBI. – szabgab Nov 1 at 11:51
@szabgab I don't think this should be a common case. What do you use the count for? – Sinan Ünür Nov 1 at 12:18

3 Answers

vote up 5 vote down check

Easy enough to do in one line with no extra variables:

$count = $dbh->selectrow_array('SELECT count(*) FROM table WHERE...', undef, @params);
link|flag
That'd be my solution too. – MarkR Nov 1 at 12:59
1  
That's what I was looking for. Thanks! – szabgab Nov 1 at 15:04
vote up 0 vote down

I probably wouldn't do this myself, but you could always make it a new top-level function of the DBH object you're using:

WARNING: untested code follows!

sub DBD::SQLite::db::count
{
   my($dbh, $table, $where) = @_;

   my($stmt) = "SELECT COUNT(*) FROM $table";
   $stmt .= " WHERE $where" if $where;

   my($count) = $dbh->selectrow_array($stmt);

   return $count;

}

and then call it like this:

my($cnt) = $dbh->count('Employee', 'year_hired < 2000');

Besides polluting a namespace that's not yours, you'd also have to write this for every DB driver you use, though I'm sure your could work something up that allows you to construct and eval some code to auto-configure this for a given DBH object.

link|flag
Aside from polluting someone else's namespace and needing to rewrite it for every DBD you use, the solution as presented requires you to interpolate values into the SQL string instead of losing placeholders ('year_hired < ?'), so you lose access to the best possible protection against SQL injection attacks. – Dave Sherohman Nov 2 at 11:09
Good point; the main thrust of this, though, was in response to the OP's comment "If I had a built-in statement for that in DBI". – Joe Casadonte Nov 2 at 13:33
vote up 2 vote down

I don't know Perl, but if it's syntax is logical I would think this would work based on your 2nd example:

sub get_count {
   return $dbh->selectall_arrayref("SELECT ...", undef, @params)->[0][0];
}
link|flag
Good guess for someone who doesn't know Perl. :) – friedo Nov 1 at 14:55
nice, though it should be $dbh->selectall_arrayref("SELECT ...", undef, @params)->[0][0]; as the call returns a matrix and not a vector. (I had the same mistake in my original example but I fixed it since your comment) – szabgab Nov 1 at 15:03
OK, fixed that. – Tony Andrews Nov 2 at 10:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.