Lines Matching refs:closeCursor
2 MySQL PDOStatement->closeCursor()
19 // This one should fail. I let it fail to prove that closeCursor() makes a difference.
20 // If no error messages gets printed do not know if proper usage of closeCursor() makes any
26 $stmt1->closeCursor();
28 // This is proper usage of closeCursor(). It shall prevent any further error messages.
36 // fetch only the first rows and let closeCursor() clean up
38 $stmt1->closeCursor();
45 $stmt2->closeCursor();
52 $stmt1->closeCursor();
60 $stmt1->closeCursor();
63 // fetch only the first rows and let closeCursor() clean up
65 $stmt1->closeCursor();
72 $stmt2->closeCursor();
76 $stmt1->closeCursor();
103 $stmt->closeCursor();