Lines Matching refs:stmt
13 $stmt = oci_parse($c, "drop table phptestlng");
14 @oci_execute($stmt);
16 $stmt = oci_parse($c, "create table phptestlng( id number(10), filetxt long)");
17 oci_execute($stmt);
21 $stmt = oci_parse ($c, "insert into phptestlng (id, filetxt) values (:id, :filetxt)");
26 oci_bind_by_name( $stmt, ":id", $i, -1);
27 oci_bind_by_name( $stmt, ":filetxt", $filetxt, -1, SQLT_LNG);
28 oci_execute($stmt, OCI_DEFAULT);
31 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 1");
32 oci_execute($stmt);
34 $row = oci_fetch_row($stmt);
40 $stmt = oci_parse ($c, "insert into phptestlng (id, filetxt) values (:id, :filetxt)");
44 oci_bind_by_name( $stmt, ":id", $i, -1);
45 oci_bind_by_name( $stmt, ":filetxt", $filetxt, -1, SQLT_LNG);
46 oci_execute($stmt, OCI_DEFAULT);
49 $stmt = oci_parse($c, "SELECT filetxt FROM phptestlng where id = 2");
50 oci_execute($stmt);
52 $row = oci_fetch_row($stmt);
56 $stmt = oci_parse($c, "drop table phptestlng");
57 oci_execute($stmt);