Home
last modified time | relevance | path

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

12345678910>>...14

/PHP-7.4/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 Dlob_008.phpt35 var_dump($row = oci_fetch_array($s));
39 while (!$row[0]->eof()) {
40 $len += strlen($row[0]->read(1024));
H A Dlob_007.phpt37 var_dump($row = oci_fetch_array($s));
39 var_dump($row[0]->size());
40 var_dump(strlen($row[0]->load()));
H A Dlob_038.phpt51 while ($row = oci_fetch_array($s, OCI_ASSOC)) {
52 var_dump($row);
53 $result = $row['CLOB']->load();
95 while ($row = oci_fetch_array($s, OCI_ASSOC)) {
96 var_dump($row);
97 $result = $row['BLOB']->load();
H A Dlob_009.phpt35 var_dump($row = oci_fetch_array($s));
37 while (!$row[0]->eof()) {
38 var_dump(str_replace("\r", "", $row[0]->read(1024)));
H A Dbug37220.phpt22 // Now let's update the row where myId = 1234 and change the tag
44 while ($row = oci_fetch_array($stmt, OCI_ASSOC+OCI_RETURN_NULLS)) {
45 foreach ($row as $item) {
H A Dlob_003.phpt40 var_dump($row = oci_fetch_array($s));
42 var_dump($row[0]->read(-1));
43 var_dump($row[0]->read(10000));
/PHP-7.4/ext/spl/tests/
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-7.4/ext/mysqli/tests/
H A Dmysqli_local_infile_default_off.phpt14 $row = mysqli_fetch_assoc($res);
15 echo "server: ", $row['Value'], "\n";
H A Dmysqli_local_infile_set_on.phpt16 $row = mysqli_fetch_assoc($res);
17 echo "server: ", $row['Value'], "\n";
H A D061.phpt53 while (($row = mysqli_fetch_row($result))) {
54 printf("%s-%s\n", $row[0], $row[1]);
55 printf("%s-%s\n", gettype($row[0]), gettype($row[1]));
H A Dmysqli_stmt_bind_param.phpt96 $row = mysqli_fetch_assoc($res);
97 if (($row['id'] != $id) || ($row['label'] != $label))
98 printf("[012] Expecting '%s'/%s', got '%s'/%s'!\n", $id, $label, $row['id'], $row['label']);
146 … if (($row['id'] != $id) || (($row['label'] != $bind_value) && ($row['label'] != $alternative))) {
149 $id, $bind_value, gettype($bind_value), $row['id'], $row['label']);
153 if (($row['id'] != $id) || ($row['label'] != $bind_value)) {
156 $id, $bind_value, $row['id'], $row['label']);
346 if (!$row = mysqli_fetch_assoc($res))
349 if ($row['id'] != 100 || $row['label'] != 'z') {
351 var_dump($row);
[all …]
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']);
67 $row = $res->fetch_assoc();
68 if (!isset($row['id']) || !isset($row['label'])) {
69 printf("[010] Brute force seek %d returned %d\n", $idx, var_export($row, true));
85 while ($row = $res->fetch_assoc()) {
100 while ($row = $res->fetch_assoc()) {
124 foreach (mysqli_fetch_all($res, MYSQLI_ASSOC) as $row) {
125 printf("id = %d label = %s\n", $row['id'], $row['label']);
H A Dbug66124.phpt54 while ($row = $result->fetch_assoc()) {
55 echo "fetch id:{$row['id']}\n";
83 while ($row = $result->fetch_assoc()) {
84 echo "fetch id:{$row['id']}\n";
H A Dbug77935.phpt29 while ($row = $result->fetch_assoc()) {
30 var_dump($row);
/PHP-7.4/ext/pdo_oci/tests/
H A Dbug41996.phpt16 $row = $stmt->fetch();
17 var_dump(strlen($row[0]) > 0);
H A Dbug60994.phpt36 $row = $select->fetch();
37 $stream1 = stream_get_contents($row['DATA']);
53 $row = $select->fetch();
54 $stream2 = stream_get_contents($row['DATA']);
70 $row = $select->fetch();
71 $stream3 = stream_get_contents($row['DATA']);
87 $row = $select->fetch();
88 $stream4 = stream_get_contents($row['DATA']);
H A Dpdo_oci_stream_2b.phpt20 // Since each column only has one lob descriptor, the last row is
27 foreach($db->query("select data1 as d4_1, data2 as d4_2 from pdo_oci_stream_2 order by id") as $row
28 $a = $row['d4_1'];
29 $a1 = $row['d4_2'];
/PHP-7.4/ext/pgsql/tests/
H A D80_bug32223.phpt44 $row = pg_fetch_row($res, 0);
45 var_dump($row);
47 if ($row[0] == 'f')
H A D80_bug32223b.phpt45 $row = pg_fetch_row($res, 0);
46 var_dump($row);
48 if ($row[0] == 'f')
/PHP-7.4/ext/sqlite3/tests/
H A Dbug73333.phpt18 while (($row = $res->fetchArray(SQLITE3_NUM)) !== false) {
19 echo gettype($row[0]), PHP_EOL;
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native.phpt116 if ($row !== $expected) {
210 array('first row'));
212 array('second row'));
235 array('row', 'row'));
241 "label" => "row"
245 "label" => "row"
293 array(':placeholder' => 'row'),
356 string(9) "first row"
361 string(10) "second row"
377 string(9) "first row"
[all …]
H A Dpdo_mysql_prepare_match_against.phpt21 $stmt->execute(array(':placeholder' => 'row'));
25 $stmt->execute(array('placeholder' => 'row'));
29 $stmt->execute(array('row'));

Completed in 101 milliseconds

12345678910>>...14