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);
25 oci_execute($statement);
28 $statement = oci_parse($c, $select);
29 oci_execute($statement, OCI_DEFAULT);
31 $row = oci_fetch_assoc($statement);
41 $statement = oci_parse($c, $select);
42 oci_execute($statement, OCI_DEFAULT);
44 $row = oci_fetch_assoc($statement);
51 $statement = oci_parse($c, $drop);
52 @oci_execute($statement);