problem getting num_rows with PDO class in php

前端 未结 1 1406
误落风尘
误落风尘 2021-01-24 06:58

I have just changed my database connection. I am not used to the PDO class or OOP yet. Anyway, I connect to the db like this:

        $dsn = \"mysql:host=\" . D         


        
相关标签:
1条回答
  • 2021-01-24 07:52

    $stmt is of type PDOStatement. That class has no num_rows property.

    You might be looking for rowCount instead, but the documentation for that states:

    If the last SQL statement executed by the associated PDOStatement was a SELECT statement, some databases may return the number of rows returned by that statement. However, this behaviour is not guaranteed for all databases and should not be relied on for portable applications.

    The long and the short if it is that, if you want to actually SELECT all that data, you can reliably determine how many rows were returned by iterating over the result set (or just call fetchAll and count the items in the array). If you don't need the data but just a number, use SELECT COUNT instead.

    So, to count the rows without changing the query:

    $result = $stmt->execute();
    $rows = $stmt->fetchAll(); // assuming $result == true
    $n = count($rows);
    
    0 讨论(0)
提交回复
热议问题