I am using Zend_Pagintor class with Zend_Db_Table_Abstract .
Zend_Pagintor
Zend_Db_Table_Abstract
Zend_Pagintor has a count() method but it always returns 1!
count()
How do i get row counts?
You can use:
$paginator->getTotalItemCount();