I want to find out how many rows are in a table. The database that I am using is a MySQL database. I already have a Db_Table class that I am using for calls like fetchAll(). But I don't need any information from the table, just the row count. How can I get a count of all the rows in the table without calling fetchAll()?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
|||
|
|
|
Counting rows with Here's how to do it the Zend_Db_Select way:
|
|||||||
|
|
|||
|
|
|
Proper Zend-Way is to use Zend_Db_Select like this:
This is how it's done in Zend_Paginator. Other option is to add
|
|||||
|
|
I'm kind of a minimalist:
Can be used generically on all tables. |
|||
|
|
|
Add count capability to your Zend_DB Object To count all table rows
|
|||||||||||
|