Commit 2704af64 authored by zYne's avatar zYne

Little fix

parent 4433e6ff
...@@ -95,23 +95,10 @@ class Doctrine_Lib { ...@@ -95,23 +95,10 @@ class Doctrine_Lib {
public static function getConnectionAsString(Doctrine_Connection $connection) { public static function getConnectionAsString(Doctrine_Connection $connection) {
$r[] = "<pre>"; $r[] = "<pre>";
$r[] = "Doctrine_Connection object"; $r[] = "Doctrine_Connection object";
$r[] = "State : ".Doctrine_Lib::getConnectionStateAsString($connection->getState()); $r[] = "State : ".Doctrine_Lib::getConnectionStateAsString($connection->getTransaction()->getState());
$r[] = "Open Transactions : ".$connection->getTransactionLevel(); $r[] = "Open Transactions : ".$connection->getTransaction()->getTransactionLevel();
$r[] = "Open Factories : ".$connection->count(); $r[] = "Table in memory : ".$connection->count();
$sum = 0;
$rsum = 0;
$csum = 0;
foreach($connection->getTables() as $objTable) {
if($objTable->getCache() instanceof Doctrine_Cache_File) {
$sum += array_sum($objTable->getCache()->getStats());
$rsum += $objTable->getRepository()->count();
$csum += $objTable->getCache()->count();
}
}
$r[] = "Cache Hits : ".$sum." hits ";
$r[] = "Cache : ".$csum." objects ";
$r[] = "Repositories : ".$rsum." objects ";
$queries = false; $queries = false;
if($connection->getDBH() instanceof Doctrine_DB) { if($connection->getDBH() instanceof Doctrine_DB) {
$handler = "Doctrine Database Handler"; $handler = "Doctrine Database Handler";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment