fixes #286
This commit is contained in:
parent
7cb5143eb8
commit
b254399733
@ -341,6 +341,7 @@ class Doctrine_Db implements Countable, IteratorAggregate, Doctrine_Adapter_Inte
|
||||
case 'oci8':
|
||||
case 'mssql':
|
||||
case 'firebird':
|
||||
case 'dblib':
|
||||
case 'pgsql':
|
||||
case 'odbc':
|
||||
case 'mock':
|
||||
@ -430,7 +431,7 @@ class Doctrine_Db implements Countable, IteratorAggregate, Doctrine_Adapter_Inte
|
||||
$stmt = $this->dbh->prepare($statement);
|
||||
|
||||
return $stmt->execute($params);
|
||||
|
||||
|
||||
} else {
|
||||
if ( ! $skip) {
|
||||
$stmt = $this->dbh->query($statement);
|
||||
|
@ -219,6 +219,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera
|
||||
$this->connections[$name] = new Doctrine_Connection_Oracle($this, $adapter);
|
||||
break;
|
||||
case 'mssql':
|
||||
case 'dblib':
|
||||
$this->connections[$name] = new Doctrine_Connection_Mssql($this, $adapter);
|
||||
break;
|
||||
case 'firebird':
|
||||
|
Loading…
x
Reference in New Issue
Block a user