Home
last modified time | relevance | path

Searched refs:c2 (Results 51 – 75 of 157) sorted by path

1234567

/PHP-7.4/ext/mysqli/tests/
H A D005.phpt18 … if (!mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 char(10), c2 text) ENGINE=" . $engine))
26 mysqli_stmt_bind_result($stmt, $c1, $c2);
31 $test[] = ($a == $c2) ? "32K String ok" : "32K String failed";
H A D006.phpt22 c2 int unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D007.phpt22 c2 smallint unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D008.phpt22 c2 tinyint unsigned,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D009.phpt26 c2 bigint,
36 $rc = mysqli_query($link, "INSERT INTO test_bind_fetch (c2,c3,c4,c5,c6,c7,c8) ".
42 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8);
53 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8);
61 …$rc = mysqli_query($link, "CREATE TABLE test_bind_fetch_uint(c1 integer unsigned, c2 integer unsig…
65 …if (!mysqli_query($link, "INSERT INTO test_bind_fetch_uint (c1,c2) VALUES (20123456, 3123456789)"))
69 mysqli_stmt_bind_result($stmt, $c1, $c2);
73 echo $c1, "\n", $c2, "\n";
H A D010.phpt24 c2 float,
34 …mysqli_query($link, "INSERT INTO test_bind_fetch (c1,c2,c3,c4,c5,c6,c7) VALUES (3.1415926535,-0.00…
38 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
42 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D011.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
35 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8);
39 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8);
H A D012.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
34 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8);
38 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8);
H A D013.phpt18 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
H A D017.phpt19 mysqli_stmt_bind_result($stmt, $c0, $c1, $c2);
25 $test = array($c0, $c1, $c2);
H A D019.phpt31 mysqli_stmt_bind_param($stmt, "issd", $c1, $c2, $c3, $c4);
34 $c2 = "foo";
44 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $c10, $c11);
49 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8,$c9,$c10,$c11);
H A D020.phpt22 c2 time,
32 c2 time,
53 $stmt = mysqli_prepare($link, "SELECT c1, c2, c3, c4, c5, c6, c7 FROM test_bind_result");
55 mysqli_stmt_bind_result($stmt,$c1, $c2, $c3, $c4, $c5, $c6, $c7);
60 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D021.phpt18 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text)");
28 mysqli_stmt_bind_result($stmt, $c1, $c2);
32 $test = array($c1,$c2);
H A D022.phpt18 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 char(10), c2 text)");
31 mysqli_stmt_bind_result($stmt, $c1, $c2);
36 $test[] = ($a2 == $c2) ? "32K String ok" : "32K String failed";
H A D023.phpt20 c2 int unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
30 $c2 = 35999;
41 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
45 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D024.phpt20 c2 smallint unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
31 $c2 = 35999;
42 mysqli_stmt_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7);
46 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7);
H A D025.phpt20 c2 tinyint unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
31 $c2 = 300;
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);
H A D026.phpt19 mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 varchar(10), c2 text)");
22 mysqli_stmt_bind_param($stmt, "sb", $c1, $c2);
H A D042.phpt20 c2 smallint unsigned,
28 mysqli_stmt_bind_param($stmt, "iiiiiii", $c1,$c2,$c3,$c4,$c5,$c6,$c7);
31 $c2 = 35999;
66 ["c2"]=>
H A D043.phpt24 mysqli_stmt_bind_param($stmt, "sii", $c1, $c2, $c3);
27 $c2 = 1;
H A D045.phpt31 mysqli_stmt_bind_result($stmt, $c1, $c2);
34 $test = array ($c1,$c2);
H A D048.phpt29 $stmt->bind_result($c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $c10, $c11);
34 $test = array($c1,$c2,$c3,$c4,$c5,$c6,$c7,$c8,$c9,$c10,$c11);
H A D060.phpt26 c2 smallint unsigned,
61 ["c2"]=>
H A D061.phpt42 if (!mysqli_query($link,"CREATE TABLE t_061 (c1 varchar(10), c2 varchar(10))"))
52 if ($result = mysqli_query($link, "SELECT c1,c2 FROM t_061")) {
H A Dmysqli_stmt_datatype_change.phpt17 if (!$c2 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
24 $c2->query("use $db");
41 var_dump($c2->query("alter table type_change drop a"));

Completed in 45 milliseconds

1234567