Home
last modified time | relevance | path

Searched refs:row (Results 126 – 150 of 367) sorted by relevance

12345678910>>...15

/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_auth_pam.phpt21 while ($row = $res->fetch_assoc()) {
22 …if (isset($row['Name']) && in_array($row['Name'], array('pam', 'authentication_pam', 'auth_pam_com…
23 $have_pam = $row['Name'];
112 if (!$row = mysqli_fetch_assoc($res)) {
116 if ($row['id'] != 1) {
117 printf("[004] Expecting 1 got %s/'%s'", gettype($row['id']), $row['id']);
H A Dbug29311.phpt42 $row = $result->fetch_row();
43 if ($row[0] != $db)
44 printf("%d: %s\n", $i, $row[0]);
H A D062.phpt19 $row = $myresult->fetch_row();
23 var_dump($row);
H A Dmysqli_stmt_bind_param.phpt124 $row = mysqli_fetch_assoc($res);
125 if (($row['id'] != $id) || ($row['label'] != $label))
126 printf("[012] Expecting '%s'/%s', got '%s'/%s'!\n", $id, $label, $row['id'], $row['label']);
174 … if (($row['id'] != $id) || (($row['label'] != $bind_value) && ($row['label'] != $alternative))) {
177 $id, $bind_value, gettype($bind_value), $row['id'], $row['label']);
181 if (($row['id'] != $id) || ($row['label'] != $bind_value)) {
184 $id, $bind_value, $row['id'], $row['label']);
374 if (!$row = mysqli_fetch_assoc($res))
377 if ($row['id'] != 100 || $row['label'] != 'z') {
379 var_dump($row);
[all …]
H A Dmysqli_insert_packet_overflow.phpt32 if (!$row = mysqli_fetch_assoc($res))
37 if (0 === ($org_max_allowed_packet = (int)$row['Value']))
62 if (!$row = mysqli_fetch_assoc($res))
67 if (0 === ($max_allowed_packet = (int)$row['Value']))
98 if (!$row = mysqli_fetch_assoc($res)) {
101 if ($row['col_blob'] != $blob) {
103 var_dump(strlen($row['col_blob']));
H A Dmysqli_local_infile_set_on.phpt17 $row = mysqli_fetch_assoc($res);
18 echo "server: ", $row['Value'], "\n";
H A Dps_cursor_multiple_result_sets.phpt63 while ($row = $result->fetch_assoc()) {
64 var_dump($row);
69 while ($row = $result->fetch_assoc()) {
70 var_dump($row);
H A Dmysqli_fork.phpt97 while ($row = mysqli_fetch_assoc($res)) {
98 /* send row to parent */
100 var_dump($row);
145 $row = mysqli_fetch_assoc($pres);
146 if ($row && $row['msg_id'] != $last_msg_id) {
147 $last_msg_id = $row['msg_id'];
148 switch ($row['msg']) {
155 $client_row = $row['msg'];
168 … printf("[013] Parent cannot fetch row %d\n", $num_rows, mysqli_errno($link), mysqli_error($link));
219 while ($row = mysqli_fetch_assoc($res))
[all …]
H A Dmysqli_store_result_copy.phpt43 while ($row = $res->fetch_assoc()) {
44 printf("id = %d, label = %s\n", $row['id'], $row['label']);
68 $row = $res->fetch_assoc();
69 if (!isset($row['id']) || !isset($row['label'])) {
70 printf("[010] Brute force seek %d returned %d\n", $idx, var_export($row, true));
89 while ($row = $res->fetch_assoc()) {
104 while ($row = $res->fetch_assoc()) {
128 foreach (mysqli_fetch_all($res, MYSQLI_ASSOC) as $row) {
129 printf("id = %d label = %s\n", $row['id'], $row['label']);
H A Dmysqli_local_infile_default_off.phpt15 $row = mysqli_fetch_assoc($res);
16 echo "server: ", $row['Value'], "\n";
H A Dbug66124.phpt55 while ($row = $result->fetch_assoc()) {
56 echo "fetch id:{$row['id']}\n";
84 while ($row = $result->fetch_assoc()) {
85 echo "fetch id:{$row['id']}\n";
/PHP-8.1/ext/oci8/tests/
H A Dfetch_all4.phpt35 $row = array(1,2,3); // this array is replaced as a result of the query
36 $row = oci_fetch_array($s);
37 var_dump($row);
H A Dbug42841.phpt59 while($row = oci_fetch_array($cursor, OCI_ASSOC + OCI_RETURN_LOBS)) {
60 $data1[] = $row;
77 while($row = oci_fetch_array($cursor, OCI_ASSOC + OCI_RETURN_LOBS)) {
78 $data2[] = $row;
104 while ($row = oci_fetch_assoc($cur)) {
105 $ret[] = $row;
H A Dlob_008.phpt37 var_dump($row = oci_fetch_array($s));
41 while (!$row[0]->eof()) {
42 $len += strlen($row[0]->read(1024));
H A Dlob_022.phpt53 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
54 $result = $row['LOB_1']->load();
62 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
63 $result = $row['LOB_1']->load();
H A Dlob_038.phpt53 while ($row = oci_fetch_array($s, OCI_ASSOC)) {
54 var_dump($row);
55 $result = $row['CLOB']->load();
97 while ($row = oci_fetch_array($s, OCI_ASSOC)) {
98 var_dump($row);
99 $result = $row['BLOB']->load();
H A Dlob_007.phpt39 var_dump($row = oci_fetch_array($s));
41 var_dump($row[0]->size());
42 var_dump(strlen($row[0]->load()));
/PHP-8.1/ext/pdo_oci/tests/
H A Dbug41996.phpt18 $row = $stmt->fetch();
19 var_dump(strlen($row[0]) > 0);
/PHP-8.1/ext/sqlite3/tests/
H A Dbug73333.phpt16 while (($row = $res->fetchArray(SQLITE3_NUM)) !== false) {
17 echo gettype($row[0]), PHP_EOL;
/PHP-8.1/ext/spl/tests/
H A Dbug75917.phpt11 foreach ($expected as $row) {
12 $tmp->fputcsv($row);
H A Dbug81477.phpt15 foreach($limitIter as $row) {
16 var_dump($row);
H A DSplFileObject_setCsvControl_basic.phpt17 foreach ($s as $row) {
18 list($fruit, $quantity) = $row;
H A DSplFileObject_setCsvControl_variation001.phpt17 foreach ($s as $row) {
18 list($fruit, $quantity) = $row;
/PHP-8.1/ext/pgsql/tests/
H A D80_bug32223b.phpt47 $row = pg_fetch_row($res, 0);
48 var_dump($row);
50 if ($row[0] == 'f')
H A D80_bug32223.phpt46 $row = pg_fetch_row($res, 0);
47 var_dump($row);
49 if ($row[0] == 'f')

Completed in 146 milliseconds

12345678910>>...15