1
0
mirror of synced 2024-12-14 07:06:04 +03:00

added bogus getState function (needed to print $conn)

This commit is contained in:
runa 2006-10-31 18:32:25 +00:00
parent 0fb5f14717
commit 286dfdebad

View File

@ -120,5 +120,14 @@ class Doctrine_Connection_Mysql extends Doctrine_Connection_Common {
$args = func_get_args();
return "CONCAT(".implode(', ', $args).")";
}
/**
* returns the state of this connection
*
* @see Doctrine_Connection_Transaction::STATE_* constants
* @return integer the connection state
*/
public function getState() {
return 0; // @todo FIXME not working!
}
}