1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
This commit is contained in:
zYne 2007-02-15 13:30:05 +00:00
parent 4a020a90fe
commit eebe47f0fa

View file

@ -204,7 +204,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera
$this->index++; $this->index++;
} }
switch ($adapter->getAttribute(PDO::ATTR_DRIVER_NAME)) { switch ($adapter->getAttribute(Doctrine::ATTR_DRIVER_NAME)) {
case 'mysql': case 'mysql':
$this->connections[$name] = new Doctrine_Connection_Mysql($this, $adapter); $this->connections[$name] = new Doctrine_Connection_Mysql($this, $adapter);
break; break;
@ -250,7 +250,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera
if ( ! isset($this->connections[$name])) { if ( ! isset($this->connections[$name])) {
throw new Doctrine_Manager_Exception('Unknown connection: ' . $name); throw new Doctrine_Manager_Exception('Unknown connection: ' . $name);
} }
$this->currIndex = $name;
return $this->connections[$name]; return $this->connections[$name];
} }
/** /**