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);
23 oci_execute($statement);
26 $statement = oci_parse($c, $select);
27 oci_execute($statement, OCI_DEFAULT);
29 $row = oci_fetch_assoc($statement);
39 $statement = oci_parse($c, $select);
40 oci_execute($statement, OCI_DEFAULT);
42 $row = oci_fetch_assoc($statement);
49 $statement = oci_parse($c, $drop);
50 @oci_execute($statement);