Commit b2543997 authored by zYne's avatar zYne

fixes #286

parent 7cb5143e
......@@ -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':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment