Commit 427a48c8 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge pull request #284 from intel352/patch-1

Correcting code example
parents 55128a65 57bf1788
......@@ -43,7 +43,7 @@ object is closed:
<?php
$stmt = $conn->executeCachedQuery($query, $params, $types, new QueryCacheProfile(0, "some key"));
$data = $stmt->fetchAll();
$stmt->close() // at this point the result is cached
$stmt->closeCursor(); // at this point the result is cached
.. warning::
......
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