Lines Matching refs:statement
16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
24 $statement = oci_parse($c, $init);
26 oci_bind_by_name($statement, ":mylob", $clob, -1, OCI_B_CLOB);
27 oci_execute($statement, OCI_DEFAULT);
34 $statement = oci_parse($c, $init);
36 oci_bind_by_name($statement, ":mylob", $clob, -1, OCI_B_CLOB);
37 oci_execute($statement, OCI_DEFAULT);
50 $statement = oci_parse ($c, $query);
51 oci_execute($statement, OCI_DEFAULT);
53 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
59 $statement = oci_parse ($c, $query);
60 oci_execute($statement, OCI_DEFAULT);
62 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
68 $statement = oci_parse($c, $drop);
69 @oci_execute($statement);