Home
last modified time | relevance | path

Searched refs:c1 (Results 51 – 75 of 232) sorted by relevance

12345678910

/PHP-7.0/ext/oci8/tests/
H A Darray_bind_str1.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);
52 $statement = oci_parse($c, "BEGIN array_bind_str1_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 10, 20, SQLT_CHR);
H A Darray_bind_005.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);
52 $statement = oci_parse($c, "BEGIN array_bind_005_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 20, SQLT_CHR);
H A Darray_bind_006.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);
52 $statement = oci_parse($c, "BEGIN array_bind_006_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_CHR);
H A Darray_bind_date1.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);
52 $statement = oci_parse($c, "BEGIN array_bind_date1_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_ODT);
H A Darray_bind_float.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);
52 $statement = oci_parse($c, "BEGIN array_bind_float_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_FLT);
H A Darray_bind_float1.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);
52 $statement = oci_parse($c, "BEGIN array_bind_float1_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_FLT);
H A Darray_bind_int.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);
52 $statement = oci_parse($c, "BEGIN array_bind_int_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_NUM);
H A Darray_bind_int1.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);
52 $statement = oci_parse($c, "BEGIN array_bind_int1_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_INT);
H A Dimp_res_get_close_1.phpt26 c1 sys_refcursor;
28 open c1 for select 1 from dual union all select 2 from dual;
29 dbms_sql.return_result(c1);
30 open c1 for select 3 from dual union all select 4 from dual;
31 dbms_sql.return_result(c1);
32 open c1 for select 5 from dual union all select 6 from dual;
33 dbms_sql.return_result(c1);
H A Dimp_res_get_1.phpt26 "create table imp_res_get_1_tab_1 (c1 number, c2 varchar2(10))",
38 c1 sys_refcursor;
40 open c1 for select * from imp_res_get_1_tab_1 order by 1;
41 dbms_sql.return_result(c1);
43 open c1 for select * from imp_res_get_1_tab_2 where rownum < 3 order by 1;
44 dbms_sql.return_result(c1);
46 open c1 for select * from dual;
47 dbms_sql.return_result (c1);
H A Dimp_res_get_2.phpt26 "create table imp_res_get_2_tab_1 (c1 number, c2 varchar2(10))",
38 c1 sys_refcursor;
40 open c1 for select * from imp_res_get_2_tab_1 order by 1;
41 dbms_sql.return_result(c1);
43 open c1 for select * from imp_res_get_2_tab_2 where rownum < 3 order by 1;
44 dbms_sql.return_result(c1);
46 open c1 for select * from dual;
47 dbms_sql.return_result (c1);
H A Drefcur_prefetch_4.phpt28 "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
33 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number, c2 out varchar2);
39 open cur1 for select * from refcurtest order by c1;
41 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number, c2 out varchar2) is
43 fetch cur1 into c1,c2;
51 $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
58 oci_bind_by_name($s,':c1',$i);
77 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
82 if (!oci_bind_by_name($s2, ":c1", $c1, -1, SQLT_INT)) {
98 var_dump($c1);
[all …]
H A Darray_bind_011.phpt21 PROCEDURE iobind(c1 IN OUT ARRTYPE);
29 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
32 INSERT INTO bind_test VALUES (c1(i));
38 FETCH CUR INTO c1(i);
49 $statement = oci_parse($c, "BEGIN array_bind_011_pkg.iobind(:c1); END;");
53 oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_CHR);
H A Darray_bind_001.phpt21 PROCEDURE iobind(c1 IN OUT ARRTYPE);
29 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
32 INSERT INTO bind_test VALUES (c1(i));
38 FETCH CUR INTO c1(i);
49 $statement = oci_parse($c, "BEGIN array_bind_001_pkg.iobind(:c1); END;");
53 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_ODT);
H A Darray_bind_002.phpt21 PROCEDURE iobind(c1 IN OUT ARRTYPE);
29 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
32 INSERT INTO bind_test VALUES (c1(i));
38 FETCH CUR INTO c1(i);
49 $statement = oci_parse($c, "BEGIN array_bind_002_pkg.iobind(:c1); END;");
53 oci_bind_array_by_name($statement, ":c1", $array, 0, 0, SQLT_ODT);
H A Darray_bind_003.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);
52 $statement = oci_parse($c, "BEGIN array_bind_003_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_ODT);
H A Darray_bind_004.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);
52 $statement = oci_parse($c, "BEGIN array_bind_004_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_ODT);
H A Darray_bind_007.phpt21 PROCEDURE iobind(c1 IN OUT ARRTYPE);
29 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
32 INSERT INTO bind_test VALUES (c1(i));
38 FETCH CUR INTO c1(i);
49 $statement = oci_parse($c, "BEGIN array_bind_007_pkg.iobind(:c1); END;");
53 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, -1);
H A Darray_bind_008.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);
52 $statement = oci_parse($c, "BEGIN array_bind_008_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_CHR);
H A Dpassword.phpt26 $c1 = oci_connect("testuser_pw", "testuserpwd", $dbase);
27 var_dump($c1);
28 $rn1 = (int)$c1;
30 oci_password_change($c1, "testuser_pw", "testuserpwd", "testuserpwd2");
32 // Second connect should return a new resource because the hash string will be different from $c1
45 var_dump($c1);
57 var_dump($c1);
H A Dpassword_2.phpt25 $c1 = oci_pconnect("testuser_pw2", "testuserpwd", $dbase);
26 var_dump($c1);
27 $rn1 = (int)$c1;
29 oci_password_change($c1, "testuser_pw2", "testuserpwd", "testuserpwd2");
31 // Second connect should return a new resource because the hash string will be different from $c1
44 var_dump($c1);
56 var_dump($c1);
H A Dimp_res_call_error.phpt26 c1 sys_refcursor;
28 open c1 for select * from dual;
29 dbms_sql.return_result(c1);
30 open c1 for select * from dual;
31 dbms_sql.return_result (c1);
/PHP-7.0/tests/basic/
H A Dbug73969.phpt13 class c1
26 c1::go();
30 #1 c1::go() called at [%s:23]
/PHP-7.0/ext/mysqli/tests/
H A D025.phpt19 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 tinyint,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
30 $c1 = -23;
43 $c1 = $c2 = $c3 = $c4 = $c5 = $c6 = $c7 = NULL;
46 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
50 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
/PHP-7.0/ext/standard/tests/assert/
H A Dassert_variation.phpt23 class c1
52 var_dump($rc=assert_options(ASSERT_CALLBACK, "c1"));
59 var_dump($rc = assert_options(ASSERT_CALLBACK,array("c1","assert")));
66 $o = new c1();
95 assert_options(ASSERT_CALLBACK) => [c1]
100 string(2) "c1"
103 string(2) "c1"
110 Deprecated: Non-static method c1::assert() should not be called statically in %s on line 53
117 string(2) "c1"
123 &object(c1)#1 (0) {

Completed in 31 milliseconds

12345678910