Home
last modified time | relevance | path

Searched refs:oci_parse (Results 51 – 75 of 218) sorted by relevance

123456789

/PHP-5.3/ext/oci8/tests/
H A Dconnect_scope_try3.phpt40 $s = oci_parse($c, "insert into scope_try3_tab values (1)");
42 $s = oci_parse($c, "insert into scope_try3_tab values (ABC)"); // syntax error -> throws exception
51 $s1 = oci_parse($c1, "select * from scope_try3_tab");
62 $s1 = oci_parse($c1, "select * from scope_try3_tab");
H A Dconnect_scope_try4.phpt40 $s = oci_parse($c, "insert into scope_try4_tab values (1)");
42 $s = oci_parse($c, "insert into scope_try4_tab values (ABC)"); // syntax error -> throws exception
51 $s1 = oci_parse($c1, "select * from scope_try4_tab");
62 $s1 = oci_parse($c1, "select * from scope_try4_tab");
H A Dconnect_scope_try5.phpt40 $s = oci_parse($c, "insert into scope_try5_tab values (1)");
42 $s = oci_parse($c, "insert into scope_try5_tab values (ABC)"); // syntax error -> throws exception
51 $s1 = oci_parse($c1, "select * from scope_try5_tab");
62 $s1 = oci_parse($c1, "select * from scope_try5_tab");
H A Dconnect_scope_try6.phpt40 $s = oci_parse($c, "insert into scope_try6_tab values (1)");
42 $s = oci_parse($c, "insert into scope_try6_tab values (ABC)"); // syntax error -> throws exception
51 $s1 = oci_parse($c1, "select * from scope_try6_tab");
62 $s1 = oci_parse($c1, "select * from scope_try6_tab");
H A Dconnect_scope_try2.phpt40 $s = oci_parse($c, "insert into scope_try2_tab values (1)");
42 $s = oci_parse($c, "insert into scope_try2_tab values (ABC)"); // syntax error -> throws exception
51 $s1 = oci_parse($c1, "select * from scope_try2_tab");
62 $s1 = oci_parse($c1, "select * from scope_try2_tab");
H A Dfield_funcs.phpt16 if (!($s = oci_parse($c, $insert_sql))) {
17 die("oci_parse(insert) failed!\n");
32 if (!($s = oci_parse($c, $select_sql))) {
33 die("oci_parse(select) failed!\n");
H A Dfield_funcs0.phpt16 if (!($s = oci_parse($c, $insert_sql))) {
17 die("oci_parse(insert) failed!\n");
32 if (!($s = oci_parse($c, $select_sql))) {
33 die("oci_parse(select) failed!\n");
H A Ddefine3.phpt21 $stmt = oci_parse ($c, "insert into phpdefblobtable (id, fileimage) values (:id, empty_blob()) retu…
41 $stmt = oci_parse($c, "SELECT fileimage FROM phpdefblobtable");
51 $stmt = oci_parse($c, "SELECT fileimage FROM phpdefblobtable");
60 $stmt = oci_parse($c, "SELECT fileimage FROM phpdefblobtable");
70 $stmt = oci_parse($c, "SELECT fileimage FROM phpdefblobtable");
H A Dlob_035.phpt21 $statement = oci_parse($c,$ora_sql);
36 $statement = oci_parse($c,$ora_sql);
44 $s = oci_parse($c, $select_sql);
50 $s = oci_parse($c, $select_sql);
75 $s = oci_parse($c, $select_sql);
H A Dbug40078.phpt18 $statement = oci_parse($c, $create_pkg);
32 $statement = oci_parse($c, $create_pkg_body);
35 $statement = oci_parse($c, "BEGIN ARRAYBINDPKG1.nullbind(:c1); END;");
H A Dlob_038.phpt23 $s = oci_parse($c,$ora_sql);
39 $s = oci_parse($c,"select clob from ".$schema.$table_name);
49 $s = oci_parse($c, "select clob from ".$schema.$table_name);
71 $s = oci_parse($c,$ora_sql);
86 $s = oci_parse($c, "select blob from ".$schema.$table_name);
93 $s = oci_parse($c, "select blob from ".$schema.$table_name);
H A Dbind_misccoltypes.phpt48 $s = oci_parse($c, "select $colname from bind_misccoltypes_tab where id = :id");
108 $s = oci_parse($c, $insert_sql);
145 $s = oci_parse($c, $select_sql);
189 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t92) VALUES (52, :n1)");
199 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t92) VALUES (53, :n1)");
209 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t) VALUES (54, :n1)");
218 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t) VALUES (55, :n1)");
229 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t) VALUES (56, :n1)");
237 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, varchar2_t10) VALUES (58, :c2)");
246 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, char_t10) VALUES (59, :c2)");
[all …]
H A Dold_oci_close1.phpt14 var_dump(oci_parse($c, "select 1 from dual"));
23 Warning: oci_parse() expects parameter 1 to be resource, null given in %s on line %d
H A Dfetch_object_2.phpt29 if (!($s = oci_parse($c, 'select * from fetch_object_2_tab order by 1'))) {
30 die("oci_parse(select) failed!\n");
43 if (!($s = oci_parse($c, 'select * from fetch_object_2_tab order by 1'))) {
44 die("oci_parse(select) failed!\n");
H A Dlob_001.phpt24 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (1, empty_blob()) returning b1 …
42 $s = oci_parse($c, "select b1 from lob_001_tab where id = 1");
48 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (2, empty_blob()) returning b1 …
54 $s = oci_parse($c, "select b1 from lob_001_tab where id = 2");
H A Dbug37581.phpt27 $s1 = oci_parse($c, $p1);
28 $s2 = oci_parse($c, $p2);
33 $stmt = oci_parse($c,'begin ARRAYBINDPKG1.array_bind(:in_arr, :out_str); end;');
H A Dpecl_bug10194.phpt25 $statement = oci_parse($c,$ora_sql);
29 $statement = oci_parse($c,$ora_sql);
43 $statement = oci_parse($c,$ora_sql);
H A Dcursors.phpt16 if (!($s = oci_parse($c, $insert_sql))) {
17 die("oci_parse(insert) failed!\n");
31 $stmt = oci_parse($c, $sql);
H A Dbug43497.phpt21 $stmt = oci_parse($c, $query);
36 $stmt = oci_parse($c, $query);
51 $stmt = oci_parse($c, "select extract(xml, '/').getclobval() from bug43497_tab");
66 $stmt = oci_parse($c, "select extract(xml, '/').getclobval() from bug43497_tab");
80 $stmt = oci_parse($c, "select extract(xml, '/').getclobval() from bug43497_tab");
94 $stmt = oci_parse($c, "create table bug43497_tab (id number primary key, xml xmltype)");
100 $stmt = oci_parse($c, "drop table bug43497_tab");
122 …$stmt = oci_parse($c, "insert into bug43497_tab(id, xml) values (:id, sys.xmltype.createxml(:xml))…
H A Dbug51291_1.phpt12 $s = @oci_parse($c, "select ' from dual");
21 $s = @oci_parse($c, "select ' from dual");
30 $s = @oci_parse($c, 'select doesnotexist from dual');
40 $s = @oci_parse($c, 'select doesnotexist from dual');
51 $s = @oci_parse($c, 'select doesnotexist from dual');
69 $s = @oci_parse($c, 'select doesnotexist from dual');
73 $s2 = oci_parse($c, 'select 1 from dual');
88 $s = @oci_parse($c, 'select doesnotexist from dual');
92 $s = oci_parse($c, 'select 1 from dual');
107 $s = @oci_parse($c, 'select doesnotexist from dual');
[all …]
H A Dbind_query.phpt27 $s = oci_parse($c, "select ename from bind_query_tab where empno = :eno");
35 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
46 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
H A Dconnect_scope1.phpt36 $s = oci_parse($c, "insert into connect_scope1_tab values (1)");
45 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
55 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
H A Dconnect_scope2.phpt36 $s = oci_parse($c, "insert into connect_scope2_tab values (1)");
45 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
55 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
H A Dlob_037.phpt22 $s = oci_parse($c,$ora_sql);
39 $s = oci_parse($c,$ora_sql);
51 $s = oci_parse($c,$ora_sql);
H A Ddrcp_cclass1.phpt27 $s = oci_parse($c, "select * from dual");
36 $s = oci_parse($c, "select * from dual");
43 $s = oci_parse($c, "select cclass_name from v\$cpool_cc_stats where cclass_name like '%.cc__$t' ord…

Completed in 31 milliseconds

123456789