From 58f78693a095cacc514bdf676d892a3d97ca6f9a Mon Sep 17 00:00:00 2001 From: chtito Date: Fri, 19 Jan 2007 17:00:25 +0000 Subject: [PATCH] added the possibility not to set the new connection as current connection --- lib/Doctrine/Manager.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/Manager.php b/lib/Doctrine/Manager.php index 962f66160..c46a6e17b 100644 --- a/lib/Doctrine/Manager.php +++ b/lib/Doctrine/Manager.php @@ -173,7 +173,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera * @throws Doctrine_Manager_Exception if trying to bind a connection with an existing name * @return Doctrine_Connection */ - public function openConnection($adapter, $name = null) + public function openConnection($adapter, $name = null, $setCurrent = true) { if ( ! ($adapter instanceof PDO) && ! in_array('Doctrine_Adapter_Interface', class_implements($adapter))) { throw new Doctrine_Manager_Exception("First argument should be an instance of PDO or implement Doctrine_Adapter_Interface"); @@ -220,8 +220,10 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera default: throw new Doctrine_Manager_Exception('Unknown connection driver '. $adapter->getAttribute(PDO::ATTR_DRIVER_NAME)); }; - - $this->currIndex = $name; + + if ($setCurrent) { + $this->currIndex = $name; + } return $this->connections[$name]; } public function openSession(PDO $pdo, $name = null)