i have a cakephp function in my model that calls a stored procedure that returns a resultset, how do i paginate the resultset in my controller? here is the function in my model
public function GetSummary(){
$sql="CALL main_report()";
return $this->query($sql);
}
and this is how am accessing the data in my controller
$usagesummary=$this->Book->GetSummary();
how do i paginate this data?