Lines Matching refs:statement
14 $statement = oci_parse($c, $drop);
15 @oci_execute($statement);
18 $statement = oci_parse($c, $create);
19 oci_execute($statement);
22 $statement = oci_parse($c, $init);
24 oci_bind_by_name($statement, ":mylob", $clob, -1, OCI_B_CLOB);
25 oci_execute($statement, OCI_DEFAULT);
32 $statement = oci_parse($c, $init);
34 oci_bind_by_name($statement, ":mylob", $clob, -1, OCI_B_CLOB);
35 oci_execute($statement, OCI_DEFAULT);
48 $statement = oci_parse ($c, $query);
49 oci_execute($statement, OCI_DEFAULT);
51 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
57 $statement = oci_parse ($c, $query);
58 oci_execute($statement, OCI_DEFAULT);
60 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
66 $statement = oci_parse($c, $drop);
67 @oci_execute($statement);