no statement caching for Oracle

This commit is contained in:
Thomas Müller 2014-08-22 12:06:36 +02:00
parent 8f201c7383
commit b8b2ef8748
1 changed files with 5 additions and 0 deletions

View File

@ -102,6 +102,11 @@ class ConnectionFactory {
/** @var $connection \OC\DB\Connection */
$connection->disableQueryStatementCaching();
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;
}