in reply to DBD::SQLite dilemma
Another vote for door number three.
Those of us who deal with different databases are unlikely to expect
to be portable, and will opt for COUNT(*) (or the equivalent) instead. And those who haven't yet experienced the joys of porting database applications to different RDBMs are getting set up for an unpleasant surprise when they use that construct.my $rowcount = $dbh->do("SELECT * FROM TABLE");
|
|---|