Skip to content

Commit 0564971

Browse files
authored
Merge pull request #22 from eFaqtBV/on-demand-hydration-fix
Do not close cursors while using ON_DEMAND hydration
2 parents fccdf97 + a73ab58 commit 0564971

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/Doctrine/Hydrator/Graph.php

-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ public function hydrateResultSet($stmt)
105105
} else {
106106
$data = $stmt->fetch(Doctrine_Core::FETCH_ASSOC);
107107
if ( ! $data) {
108-
$stmt->closeCursor();
109108
return $result;
110109
}
111110
}
@@ -136,7 +135,6 @@ public function hydrateResultSet($stmt)
136135
} else if ($activeRootIdentifier != $id[$rootAlias]) {
137136
// first row for the next record
138137
$this->_priorRow = $data;
139-
$stmt->closeCursor();
140138
return $result;
141139
}
142140
}

0 commit comments

Comments
 (0)