This commit is contained in:
parent
4a020a90fe
commit
eebe47f0fa
1 changed files with 2 additions and 2 deletions
|
@ -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];
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue