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