Re: can't pagination use the group by ?

2009-03-05 Thread Brett Wilton
' = array('acc_id', 'count(*) as countnum'),         'order' = array('countnum ' = 'desc'), 'group' = array('acc_id')     ); the paginate  can't get the paginate's count, can't pagination use the group by ? or how to use the group by in paginate. Thanks rimoe

Re: can't pagination use the group by ?

2009-03-04 Thread alagar
('acc_id')     ); the paginate  can't get the paginate's count, can't pagination use the group by ? or how to use the group by in paginate. Thanks rimoe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP

can't pagination use the group by ?

2009-03-03 Thread Rimoe
hi, I have write a var $paginate = array( 'limit' = 50, 'fields' = array('acc_id', 'count(*) as countnum'), 'order' = array('countnum ' = 'desc'), 'group' = array('acc_id') ); the paginate can't get the paginate's count, can't pagination use the group by ? or how to use