2006-07-24 01:08:06 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// works only if you use doctrine database handler
|
|
|
|
|
2006-08-22 02:51:27 +04:00
|
|
|
$dbh = $conn->getDBH();
|
2006-07-24 01:08:06 +04:00
|
|
|
|
|
|
|
$times = $dbh->getExecTimes();
|
|
|
|
|
|
|
|
// print all executed queries and their execution times
|
|
|
|
|
|
|
|
foreach($dbh->getQueries() as $index => $query) {
|
|
|
|
print $query." ".$times[$index];
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|