From 286dfdebad3f1af27dfa2aa80a237a995e46c191 Mon Sep 17 00:00:00 2001 From: runa Date: Tue, 31 Oct 2006 18:32:25 +0000 Subject: [PATCH] added bogus getState function (needed to print $conn) --- lib/Doctrine/Connection/Mysql.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/Doctrine/Connection/Mysql.php b/lib/Doctrine/Connection/Mysql.php index 353ad8691..d49f71838 100644 --- a/lib/Doctrine/Connection/Mysql.php +++ b/lib/Doctrine/Connection/Mysql.php @@ -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! + } }