I'm using Zf 1.10 on a project, and have been using Zend_Paginator together with Zend_DbTable queries quite successfully until this bit.

The query requires a DISTINCT keyword to remove duplicate rows created by a join, but when I add it, the paginator incorrectly displays navigation for two pages of results when there is only in fact one page of results. Some digging around reveals that it's executing two queries, one for the result set I'm after (77 rows) and another to get the count. But the second query generated by the Zend magic doesn't include the DISTINCT keyword and so the count returns 112 rows instead of 77 rows.

Here's the relevant bit

$select = $this->select()
    ->setIntegrityCheck(false)
    ->from('companies')
    ->distinct()
    ->join('project_team', 'companies.companyID = project_team.companyID', null)
    ->join('project_team_roles', 'project_team.roleID = project_team_roles.roleID', null)
    ->join('projects', 'projects.projectID = project_team.projectID', null)
    ->where('project_team_roles.isArchitect')
    ->where('companies.companyName LIKE ?', '%' . $str . '%')
    ->where('projects.islive AND NOT projects.isDeleted')
    ->order('companies.companyName'); 
 $adapter = new Zend_Paginator_Adapter_DbTableSelect($select);
 $paginator = new Zend_Paginator($adapter);
 $paginator->setCurrentPageNumber($page);
 $paginator->setItemCountPerPage(100);
 return $paginator;

There's nothing wrong with the queries it's generating, other than it's ignoring the DISTINCT clause in the count query. If you remove the ->distinct() bit it all works out great - 112 rows and pagination is all super, except the data has duplicate rows.

I see bug reports going back a fair ways about similar issues but they're marked as fixed in earlier versions of ZF

?Is this is a known gotcha? Is there anything I can do about it without writing my own pagination. It's not that writing pagination is especially challenging, but it means this bit will be inconsistent from the rest of the project

Many thanks

Ian

EDIT - Found a workaround, posted as answer below.

link|improve this question

48% accept rate
feedback

2 Answers

This was asked a long time ago,but it still needs an answer.

You should use setRowCount() methods in your controller.

$select = $your_model->getSelect();
$select_count = $your_model->getCount(); // geting count from select above
$adapter = new Zend_Paginator_Adapter_DbSelect($select);
$adapter->setRowCount((int)trim($select_count)); // <-- // set integer !
$paginator = new Zend_Paginator($adapter);
// That's it
...

$this->view->paginator = $paginator; 
// and so on...
link|improve this answer
hi - thanks for that - next time I'm updating this project I'll try this out. Upvote for taking the trouble to answer such an old question – Flubba Nov 5 '11 at 1:23
what can we do to solve this problem in social engine? – Varada Mar 9 at 7:18
Have to do exactly as written above... – tasmaniski Mar 9 at 9:01
First update ZF, if that doesn't solve the problem then you can execute command: grep -r -l "paginator" * to find wher is that code and change it... Or setup ZFDebug to log where that query is... but in anyway you have to change the code – tasmaniski Mar 9 at 9:06
feedback

Found a simple workaround... Don't use the DbTable adapter, but get the results into an array and then pass that to the paginator

$results = $this->fetchAll($select)->toArray(); 
$adapter = new Zend_Paginator_Adapter_Array($results);

It's only the DbTable that has this bug, it would seem.

Best of luck!

link|improve this answer
2  
Then you are retrieving ALL the result and store them in an array not very efficient – Chris Jan 7 '11 at 11:26
feedback

Your Answer

 
or
required, but never shown

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