vote up 2 vote down star
2

So I've been using PHP's PDO as my database goto class for a while now, unfortunately today after debugging for a while on a client's server (with PHP 5.2.6 installed) I discover this. We tried upgrading to the newest stable release (5.2.9) but the problem persists.

Has anyone found a workaround?

flag

56% accept rate
I'm not sure what you're looking for, you're calling affected_rows() and getting back zero for a select statement? A select doesn't affect any rows. – Chad Birch Apr 20 at 19:43
I'm looking for a PDO equivalent of mysql_num_rows() – Andrew G. Johnson Apr 20 at 20:43

3 Answers

vote up 4 vote down

You could do it through MySQL itself by using the FOUND_ROWS() function, not sure if there are any better alternatives.

Edit: It seems as though the only reason this was possible with MySQL is because it internally fetched all the result rows and buffered them, to be able to give you this information. See mysql_unbuffered_query(). If you use that function instead of mysql_query(), the mysql_num_rows() function will not work. If you really need to know the number of rows while using PDO, you can fetch all of the rows from PDO into an array and then use count().

link|flag
1  
+1 Not even the MySQL C API can tell you the number of rows, before fetching them all. – Bill Karwin Apr 21 at 6:02
well rowCount() is only run AFTER you get results returned so I believe they would already be fetched – Andrew G. Johnson Apr 21 at 15:34
vote up 1 vote down

Notice you should not use rowCount() for SELECT queries since PDOStatement->rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement executed by the corresponding PDOStatement object.

Instead you might use fetchAll() into an array and then count().

link|flag
vote up 1 vote down

The only way that databases can give you a count for the number of rows is by running the query and counting the number of rows.

The mysql extension uses a buffered query mode by default that causes the entire dataset to be fetched into memory before control is returned to PHP and it can start to process the rows.

PDO uses an unbuffered mode by default which leads to lower latency in the page load time and is generally what you want. The trade off is that rowCount() won't return valid information until the entire dataset has been fetched.

So how do you get that count?

Easy:

$q = $db->query("SELECT ...");
$rows = $q->fetchAll();
$rowCount = count($rows);
echo "There are $rowCount rows\n";
foreach ($rows as $row) {
    print_r($row);
}

But that sucks because it queries all the rows up front and makes my page load slower, the old mysql extension didn't have this problem!?

But that's exactly what the old mysql extension is actually doing under the covers; it's the only way to get that count.

link|flag

Your Answer

Get an OpenID
or

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