no statement caching for Oracle
This commit is contained in:
parent
8f201c7383
commit
b8b2ef8748
|
@ -102,6 +102,11 @@ class ConnectionFactory {
|
||||||
/** @var $connection \OC\DB\Connection */
|
/** @var $connection \OC\DB\Connection */
|
||||||
$connection->disableQueryStatementCaching();
|
$connection->disableQueryStatementCaching();
|
||||||
break;
|
break;
|
||||||
|
case 'oci':
|
||||||
|
// oracle seems to have issues with cached statements which have been closed
|
||||||
|
/** @var $connection \OC\DB\Connection */
|
||||||
|
$connection->disableQueryStatementCaching();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return $connection;
|
return $connection;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue