Merge pull request #14459 from owncloud/fix-oracle
Dont break code which relies on the cursor being open after insert/updat...
This commit is contained in:
commit
65dcbccee0
|
@ -80,7 +80,6 @@ class OC_DB_StatementWrapper {
|
||||||
}
|
}
|
||||||
if ($this->isManipulation) {
|
if ($this->isManipulation) {
|
||||||
$count = $this->statement->rowCount();
|
$count = $this->statement->rowCount();
|
||||||
$this->statement->closeCursor();
|
|
||||||
return $count;
|
return $count;
|
||||||
} else {
|
} else {
|
||||||
return $this;
|
return $this;
|
||||||
|
|
Loading…
Reference in New Issue