Beefy Boxes and Bandwidth Generously Provided by pair Networks Cowboy Neal with Hat
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Perl and MySQL: Get number of rows affected

by reneeb (Chaplain)
on Jul 15, 2006 at 03:49 UTC ( [id://561408]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Perl and MySQL: Get number of rows affected

If samy_rios answer doesn't do what you want you can use this one:

my $select = "SELECT value FROM table WHERE distinguishing_value = ?"; my $sth = $dbh->prepare($select) or die $dbh->errstr(); $sth->execute() or die $dbh->errstr(); print $sth->rows;
see DBI

Replies are listed 'Best First'.
Re^2: Perl and MySQL: Get number of rows affected
by gellyfish (Monsignor) on Jul 15, 2006 at 04:14 UTC

    This may not work depending on the driver - the DBI manpage says:

    For "SELECT" statements, it is generally not possible to know how many rows will be returned except by fetching them all. Some drivers will return the number of rows the application has fetched so far, but others may return -1 until all rows have been fetched. So use of the "rows" method or $DBI::rows with "SELECT" statements is not recommended.
    I can't find anything in the DBD::mysql documentation that would contradict this.

    /J\

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://561408]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.