Lines Matching refs:cursor
49 $sql = "BEGIN bug42841_proc(:cursor); END;";
51 $cursor = oci_new_cursor($c);
52 oci_bind_by_name($stmt, ":cursor", $cursor, -1, OCI_B_CURSOR);
55 oci_execute($cursor);
57 while($row = oci_fetch_array($cursor, OCI_ASSOC + OCI_RETURN_LOBS)) {
62 oci_free_statement($cursor);
67 $sql = "BEGIN bug42841_proc(:cursor); END;";
69 $cursor = oci_new_cursor($c);
70 oci_bind_by_name($stmt, ":cursor", $cursor, -1, OCI_B_CURSOR);
73 oci_execute($cursor);
75 while($row = oci_fetch_array($cursor, OCI_ASSOC + OCI_RETURN_LOBS)) {
80 oci_free_statement($cursor);
111 echo "Test bug 42841: Procedure with OUT cursor parameter\n";
132 Test bug 42841: Procedure with OUT cursor parameter