> Is there a way to get the cost in cpu cycles or the milliseconds it
> takes to process a query and output that statistic in PHP? Or maybe the
> processing time of the whole page?

The most naive approach is the brute force test: Run the query and
count the time it toke to execute it. However this only counts the
overall time it took to execute the query and not the true time
of the execution.

The other way is to consult the analysis tools, if provided,
with the RDBMS.


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to