Home
last modified time | relevance | path

Searched refs:row (Results 101 – 125 of 348) sorted by relevance

12345678910>>...14

/PHP-7.2/ext/oci8/tests/
H A Dimp_res_insert.phpt56 while (($row = oci_fetch_row($s)) !== false)
57 echo $row[0], "\n";
66 while (($row = oci_fetch_row($s)) !== false)
67 echo $row[0], "\n";
78 while (($row = oci_fetch_row($s)) !== false)
79 echo $row[0], "\n";
88 while (($row = oci_fetch_row($s)) !== false)
89 echo $row[0], "\n";
H A Dlob_019.phpt38 var_dump($row = oci_fetch_array($s));
40 var_dump($row[0]->read(5));
41 var_dump($row[0]->read(5));
42 var_dump($row[0]->read(5));
H A Dbind_raw.phpt29 $row = oci_fetch_row($stmt);
30 var_dump(md5($row[0]));
31 var_dump(strlen($row[0]));
H A Dlob_010.phpt34 $row = oci_fetch_array($s);
36 while (!$row[0]->eof()) {
37 var_dump($row[0]->read(1024));
H A Dbind_long_raw.phpt28 $row = oci_fetch_row($stmt);
29 var_dump(md5($row[0]));
30 var_dump(strlen($row[0]));
H A Dimp_res_prefetch.phpt56 while (($row = oci_fetch_row($s)) != false)
57 var_dump($row);
63 while (($row = oci_fetch_row($s)) != false)
64 var_dump($row);
70 while (($row = oci_fetch_row($s)) != false)
71 var_dump($row);
H A Dlob_026.phpt41 var_dump($row = oci_fetch_array($s));
45 var_dump(oci_lob_append($row[0], $blob));
47 var_dump(oci_lob_read($row[0], 10000));
55 $row = oci_fetch_array($s);
57 var_dump(oci_lob_read($row[0], 10000));
H A Dbind_raw_2.phpt29 $row = oci_fetch_row($stmt);
30 var_dump(md5($row[0]));
31 var_dump(strlen($row[0]));
H A Dlob_043.phpt35 while (($row = oci_fetch_array($s, OCI_RETURN_NULLS+OCI_ASSOC+OCI_RETURN_LOBS)) !== false) {
36 $r[] = $row['C1'];
47 while (($row = oci_fetch_array($s, OCI_RETURN_NULLS+OCI_ASSOC)) !== false) {
48 $r[] = $row['C1'];
H A Dpecl_bug10194_blob.phpt32 $row = oci_fetch_assoc($statement);
37 $row['BLOB']->write($string);
48 $row = oci_fetch_assoc($statement);
49 var_dump(strlen($row['BLOB']->load())); /* here it should fail */
H A Dpecl_bug10194_blob_64.phpt33 $row = oci_fetch_assoc($statement);
38 $row['BLOB']->write($string);
49 $row = oci_fetch_assoc($statement);
50 var_dump(strlen($row['BLOB']->load())); /* here it should fail */
H A Dlob_005.phpt32 var_dump($row = oci_fetch_array($s));
34 var_dump(oci_lob_is_equal($row[0], $row['BLOB']));
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_pconn_reuse.phpt36 $row = mysqli_fetch_assoc($res);
37 printf("Connection 1 - SELECT @pcondisabled -> '%s'\n", $row['_test']);
43 $row = mysqli_fetch_assoc($res);
44 printf("Connection 2 (no reuse) - SELECT @pcondisabled -> '%s'\n", $row['_test']);
56 $row = mysqli_fetch_assoc($res);
57 printf("Connection 2 - SELECT @pcondisabled -> '%s'\n", $row['_test']);
71 $row = mysqli_fetch_assoc($res);
72 printf("Connection 2 (reuse) - SELECT @pcondisabled -> '%s'\n", $row['_test']);
H A Dmysqli_pam_sha256_public_key_ini.phpt28 while ($row = $res->fetch_assoc()) {
29 if (($row['Name'] == 'sha256_password') && ($row['Status'] == 'ACTIVE')) {
41 if (!($row = $res->fetch_assoc())) {
45 $key = $row['Value'];
107 if (!$row = mysqli_fetch_assoc($res)) {
111 if ($row['id'] != 1) {
112 printf("[004] Expecting 1 got %s/'%s'", gettype($row['id']), $row['id']);
H A Dconnect.inc133 ($row = $res->fetch_row()) &&
134 !empty($row)) {
135 if ($row[1] == "DISABLED" || $row[1] == "NO") {
142 while ($row = $res->fetch_assoc()) {
143 if (!isset($row['Engine']) || !isset($row['Support']))
146 if (('InnoDB' == $row['Engine']) &&
147 (('YES' == $row['Support']) || ('DEFAULT' == $row['Support']))
H A Dmysqli_fetch_array.phpt107 if (!$row = mysqli_fetch_array($res, MYSQLI_BOTH)) {
113 …if (!preg_match($regexp_comparison, (string)$row['label']) || !preg_match($regexp_comparison, (str…
116 gettype($row[1]), $row[1],
117 gettype($row['label']), $row['label'], mysqli_errno($link), mysqli_error($link));
123 if (($row['label'] != $php_value) || ($row[1] != $php_value)) {
126 gettype($row[1]), $row[1],
127 gettype($row['label']), $row['label'], mysqli_errno($link), mysqli_error($link));
130 if (gettype($row['label']) == 'unicode') {
137 if (($row['label'] !== $php_value) || ($row[1] != $php_value)) {
140 gettype($row[1]), $row[1],
[all …]
H A Dmysqli_multi_query.phpt41 while ($row = mysqli_fetch_array($res))
66 while ($row = mysqli_fetch_array($res))
81 while ($row = mysqli_fetch_array($res))
108 while ($row = mysqli_fetch_array($res)) {
111 if ($row['num'] != $res_num)
112 printf("[013 - %d] Expecting %s got %s\n", $res_num, $res_num, $row['num']);
113 if ($row['somechar'] != "a")
114 printf("[014 - %d] Expecting a got %s\n", $res_num, $row['somechar']);
132 printf("[018 - %d] Expecting 1 row, got %d rows\n", $num_rows);
H A Dmysqli_insert_packet_overflow.phpt31 if (!$row = mysqli_fetch_assoc($res))
36 if (0 === ($org_max_allowed_packet = (int)$row['Value']))
61 if (!$row = mysqli_fetch_assoc($res))
66 if (0 === ($max_allowed_packet = (int)$row['Value']))
92 if (!$row = mysqli_fetch_assoc($res)) {
95 if ($row['col_blob'] != $blob) {
97 var_dump(strlen($row['col_blob']));
H A Dmysqli_options_init_command.phpt28 $row = mysqli_fetch_assoc($res);
31 if ($row['_num_rows'] != 1)
32 printf("[003] Expecting 1 got %s\n", $row['_num_rows']);
47 $row = mysqli_fetch_assoc($res);
50 if ($row['_num_rows'] != 2)
51 printf("[007] Expecting 1 got %s\n", $row['_num_rows']);
H A Dmysqli_pam_sha256_public_key_option_invalid.phpt28 while ($row = $res->fetch_assoc()) {
29 if (($row['Name'] == 'sha256_password') && ($row['Status'] == 'ACTIVE')) {
41 if (!($row = $res->fetch_assoc())) {
45 if (strlen($row['Value']) < 100) {
54 if (strlen($row['Value']) != fwrite($fp, $row['Value'])) {
111 if (!$row = mysqli_fetch_assoc($res)) {
116 if ($row['id'] != 1) {
117 printf("[%03d + 005] Expecting 1 got %s/'%s'", $offset, gettype($row['id']), $row['id']);
H A Dbug36949.phpt19 $row = $result->fetch_object();
20 echo $row->my_time."<br>\n";
37 $row = $result->fetch_object();
38 echo $row->my_time."<br>\n";
H A Dmysqli_change_user_get_lock.phpt26 if (!$row = mysqli_fetch_assoc($res))
29 if ($row['_ok'] != 1)
49 if (!$row = mysqli_fetch_assoc($res))
52 if ($row['_ok'] != NULL)
61 if (!$row = mysqli_fetch_assoc($res))
64 if ($row['_ok'] != 1)
86 if (!$row = mysqli_fetch_assoc($res))
89 if ($row['_ok'] != NULL)
H A Dmysqli_result_references_mysqlnd.phpt25 while ($row = mysqli_fetch_assoc($res)) {
27 $references[$idx]['row_ref'] = &$row;
28 $references[$idx]['row_copy'] = $row;
29 $references[$idx]['id_ref'] = &$row['id'];
30 $references[$idx++]['id_copy'] = $row['id'];
H A Dbug29311.phpt41 $row = $result->fetch_row();
42 if ($row[0] != $db)
43 printf("%d: %s\n", $i, $row[0]);
/PHP-7.2/ext/dom/tests/
H A Ddom001.phpt203 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
204 <row><entry>a2</entry><entry>c2</entry></row>
205 <row><entry>a3</entry><entry>b3</entry><entry>c3</entry></row>
264 <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
265 <row><entry>a2</entry><entry>c2</entry></row>
266 <row><entry>a3</entry><entry>b3</entry><entry>c3</entry></row>

Completed in 33 milliseconds

12345678910>>...14