Home
last modified time | relevance | path

Searched refs:c1 (Results 126 – 150 of 231) sorted by path

12345678910

/PHP-7.4/ext/oci8/tests/
H A Dbind_unsupported_3.phpt24 $s = oci_parse($c, "select * from dual where dummy = :c1");
25 $c1 = "Doug";
26 oci_bind_by_name($s, ":c1", $c1, -1, $v);
H A Dbug36403.phpt16 "create table bug36403_tab (c1 number, col2 number, column3 number, col4 number)"
H A Dbug40078.phpt16 PROCEDURE nullbind(c1 OUT ARRTYPE);
23 PROCEDURE nullbind(c1 OUT ARRTYPE) IS
25 c1(1) := 'one';
26 c1(2) := 'two';
27 c1(3) := '';
28 c1(4) := 'four';
29 c1(5) := 'five';
35 $statement = oci_parse($c, "BEGIN bug40078_pkg.nullbind(:c1); END;");
37 oci_bind_array_by_name($statement, ":c1", $array, 5, 20, SQLT_CHR);
H A Dbug41069.phpt30 c1 number(20),
45 "insert into bug41069_tab (c1, c2, c5, c6, c9, c10, c12, c15) values
48 "insert into bug41069_tab (c1, c2, c3, c4, c5, c6, c7, c9, c10, c12, c13, c15) values
51 "insert into bug41069_tab (c1, c2, c3, c4, c5, c6, c7, c9, c10, c12, c15) values
61 $stid = oci_parse($c, 'select * from bug41069_tab order by c1');
67 $stid = oci_parse($c, 'select * from bug41069_tab@bug41069_dblink order by c1');
H A Dbug42173.phpt18 c1 TIMESTAMP,
H A Dbug42496_1.phpt18 "CREATE table bug42496_1_tab(c1 CLOB, c2 CLOB)",
H A Dbug42496_2.phpt18 "CREATE table bug42496_2_tab(c1 CLOB, c2 CLOB)",
H A Dbug51253.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
53 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array2, 5, -1, SQLT_CHR);
64 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
67 oci_bind_array_by_name($statement, ":c1", $array2, 5, -1, SQLT_CHR);
75 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
78 oci_bind_array_by_name($statement, ":c1", $array1, 5, -1, SQLT_CHR);
H A Dbug74625.phpt17 PROCEDURE iobind(c1 IN OUT ARRTYPE);
20 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
23 c1(i) := c1(i) * 2;
31 $statement = oci_parse($c, "BEGIN pkg74625.iobind(:c1); END;");
35 oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_INT);
H A Dconn_attr_4.phpt46 var_dump(oci_set_action($c1,$c1));
50 var_dump(oci_set_action($c1,'ACTION1'));
51 var_dump(oci_set_action($c1,'ACTION1'));
52 var_dump(oci_set_action($c1,'ACTION2'));
53 var_dump(oci_set_action($c1,'ACTION1'));
54 get_attr($c1,'ACTION');
62 oci_set_module_name($c1,$val);
63 oci_set_client_identifier($c1,$val);
64 oci_set_client_info($c1,$val);
65 $r = oci_set_action($c1,$val);
[all …]
H A Dconnect_1.phpt11 var_dump($c1 = oci_pconnect($user, $password, $dbase));
14 var_dump($c1 = oci_pconnect($user, $password));
24 var_dump(oci_close($c1));
H A Dconnect_1_old.phpt11 var_dump($c1 = ociplogon($user, $password, $dbase));
14 var_dump($c1 = ociplogon($user, $password));
24 var_dump(ocilogoff($c1));
H A Dconnect_scope1.phpt14 "create table connect_scope1_tab (c1 number)",
18 $c1 = oci_new_connect($user,$password,$dbase);
20 $c1 = oci_new_connect($user,$password);
22 oci8_test_sql_execute($c1, $stmtarray);
45 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
55 $s1 = oci_parse($c1, "select * from connect_scope1_tab");
66 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope2.phpt14 "create table connect_scope2_tab (c1 number)",
18 $c1 = oci_new_connect($user,$password,$dbase);
20 $c1 = oci_new_connect($user,$password);
22 oci8_test_sql_execute($c1, $stmtarray);
45 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
55 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
66 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try1.phpt16 "create table scope_try1_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try1_tab");
62 $s1 = oci_parse($c1, "select * from scope_try1_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try2.phpt16 "create table scope_try2_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try2_tab");
62 $s1 = oci_parse($c1, "select * from scope_try2_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try3.phpt16 "create table scope_try3_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try3_tab");
62 $s1 = oci_parse($c1, "select * from scope_try3_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try4.phpt16 "create table scope_try4_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try4_tab");
62 $s1 = oci_parse($c1, "select * from scope_try4_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try5.phpt16 "create table scope_try5_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try5_tab");
62 $s1 = oci_parse($c1, "select * from scope_try5_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_scope_try6.phpt16 "create table scope_try6_tab (c1 number)"
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
24 oci8_test_sql_execute($c1, $stmtarray);
51 $s1 = oci_parse($c1, "select * from scope_try6_tab");
62 $s1 = oci_parse($c1, "select * from scope_try6_tab");
73 oci8_test_sql_execute($c1, $stmtarray);
H A Dconnect_with_charset_001.phpt10 var_dump($c1 = oci_connect($user, $password, $dbase));
H A Ddrcp_characterset.phpt12 $c1 = oci_connect($user,$password,$dbase,"UTF8");
13 var_dump($c1);
30 // The two connections c1 and c2 should not share resources as they use different
33 if((int)$c1 === (int)$c2)
47 oci_close($c1);
H A Ddrcp_newconnect.phpt16 var_dump($c1 = oci_new_connect($user,$password,$dbase));
17 $rn1 = (int)$c1;
32 oci_close($c1);
H A Ddupcolnames.phpt16 "create table dupcolnames_tab1 (c1 number, dupnamecol varchar2(20))",
19 "insert into dupcolnames_tab1 (c1, dupnamecol) values (1, 'chris')",
H A Dedition_2.phpt92 if ($c1) {
94 oci_close($c1);
99 $c1 = get_conn(3);
105 $c1 = get_conn(1);
106 get_edit_attr($c1);
107 oci_close($c1);
115 $c1 = get_conn(3);
117 get_edit_attr($c1);
122 oci_commit($c1);
124 get_edit_attr($c1);
[all …]

Completed in 26 milliseconds

12345678910