Is there no longer a need for num_rows()? |
(08-12-2019, 02:54 AM)tgix Wrote:(08-12-2019, 02:17 AM)daveĀ friend Wrote: I think you're looking for $builder->countAllResults() Digging deeper I see that BaseResult has a public property - $numRows. It appears that by using any db operation that returns a Result you should be able to do something like this. PHP Code: $res = $db->query("YOUR QUERY")->getResult(); I haven't confirmed my premise, only explored the source code. However, after exploring the source more deeply I'm skeptical about my correctness. I cannot find any place where $numRows is assigned a value. (I"m looking at the current state of the develop branch - last commit on Aug 11, 2019) Even if I'm wrong that property might be a useful place to store the result of your count() call. |
Messages In This Thread |
Is there no longer a need for num_rows()? - by tgix - 08-11-2019, 10:04 PM
RE: Is there no longer a need for num_rows()? - by dave friend - 08-12-2019, 02:17 AM
RE: Is there no longer a need for num_rows()? - by tgix - 08-12-2019, 02:54 AM
RE: Is there no longer a need for num_rows()? - by dave friend - 08-12-2019, 09:38 AM
RE: Is there no longer a need for num_rows()? - by InsiteFX - 08-13-2019, 04:20 AM
RE: Is there no longer a need for num_rows()? - by dave friend - 08-13-2019, 05:10 AM
RE: Is there no longer a need for num_rows()? - by Stormbringer - 10-18-2019, 04:53 AM
RE: Is there no longer a need for num_rows()? - by sneakyimp - 12-28-2020, 03:39 PM
|