Home
last modified time | relevance | path

Searched refs:row (Results 151 – 175 of 348) sorted by relevance

12345678910>>...14

/PHP-7.4/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_createaggregate.phpt18 foreach ($db->query('SELECT testing(name) FROM foobar') as $row) {
19 var_dump($row);
H A Dpdo_sqlite_createfunction.phpt19 foreach ($db->query('SELECT testing(name) FROM foobar') as $row) {
20 var_dump($row);
H A Dpdo_sqlite_tostring_exception.phpt38 while ($row = $query->fetch(PDO::FETCH_ASSOC)) {
39 print_r($row);
H A Dpdo_sqlite_createfunction_with_flags.phpt22 foreach ($db->query('SELECT testing(name) FROM foobar') as $row) {
23 var_dump($row);
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_begintransaction.phpt39 $row = $stmt->fetch(PDO::FETCH_ASSOC);
40 var_dump($row);
45 if (1 !== $db->exec(sprintf('DELETE FROM test WHERE id = %d', $row['id'])))
46 …printf("[007] DELETE should have indicated 1 deleted row, [%s] %s\n", $db->errorCode(), implode(' …
54 if (!($stmt = $db->query(sprintf('SELECT id, label FROM test WHERE id = %d', $row['id']))))
62 $db->exec(sprintf("INSERT INTO test(id, label) VALUES (%d, 'z')", $row['id']));
64 if (!($stmt = $db->query(sprintf('SELECT id, label FROM test WHERE id = %d', $row['id']))))
73 if (!($stmt = $db->query(sprintf('SELECT id, label FROM test WHERE id = %d', $row['id']))))
86 if (1 !== $db->exec(sprintf('DELETE FROM test WHERE id = %d', $row['id'])))
87 …printf("[017] DELETE should have indicated 1 deleted row, [%s] %s\n", $db->errorCode(), implode(' …
[all …]
H A Dpdo_mysql_last_insert_id.phpt63 $row = $stmt->fetch(PDO::FETCH_ASSOC);
64 $last_id = $row['_last_id'];
84 $row = $stmt->fetch(PDO::FETCH_ASSOC);
85 $inc = $row['inc'];
91 $row = $stmt->fetch(PDO::FETCH_ASSOC);
92 $last_id = $row['_last_id'];
H A Dpdo_mysql_stmt_blobfromsteam.phpt87 $row = $stmt2->fetch(PDO::FETCH_ASSOC);
88 if ($row['label'] != $blob) {
90 var_dump($row);
105 $row = $stmt2->fetch(PDO::FETCH_ASSOC);
106 if ($row['label'] != $blob) {
108 var_dump($row);
/PHP-7.4/ext/mysqli/tests/
H A Dbug_mysql_49406.phpt21 if (!$row = $res->fetch_row())
26 if ($row[0] != '2009-12-03') {
27 printf("[004] Expecting '2009-12-03' got '%s'\n", $row[0]);
84 if ($row[0] != $row_stmt) {
86 var_dump($row[0]);
H A Dmysqli_pconn_disabled.phpt38 $row = mysqli_fetch_assoc($res);
39 printf("Connecction 1 - SELECT @pcondisabled -> '%s'\n", $row['_test']);
45 $row = mysqli_fetch_assoc($res);
46 printf("Connecction 2 - SELECT @pcondisabled -> '%s'\n", $row['_test']);
H A Dbug49442.phpt55 while ($row = mysqli_fetch_assoc($res)) {
56 var_dump($row);
57 $rows[] = $row;
96 while ($row = mysqli_fetch_assoc($res)) {
97 if (($row['id'] != $rows[$i]['id']) || ($row['label'] != $rows[$i]['label'])) {
H A Dmysqli_pconn_kill.phpt31 while ($row = mysqli_fetch_assoc($res))
32 $running_threads[$row['Id']] = $row;
55 while ($row = mysqli_fetch_assoc($res))
56 $running_threads2[$row['Id']] = $row;
H A Dmysqli_insert_id.phpt60 if (!$row = mysqli_fetch_assoc($res)) {
65 $inc = $row['inc'];
87 Note: For a multiple-row insert, LAST_INSERT_ID() and mysql_insert_id() actually
89 multiple-row inserts to be reproduced correctly on other servers in a replication setup.
100 if (!$row = mysqli_fetch_assoc($res)) {
106 if ($next_id != $row['last_id']) {
108 $next_id, $row['last_id']);
H A Dbug75018.phpt29 while ($row = $result->fetch_assoc()) {
30 var_dump($row['bit_column_1']);
H A D015.phpt53 $row = mysqli_fetch_row($result);
56 var_dump($row);
68 $row = mysqli_fetch_row($result);
71 var_dump($row);
/PHP-7.4/ext/sqlite3/tests/
H A Dexception_from_toString.phpt34 while ($row = $query->fetchArray(SQLITE3_ASSOC)) {
35 print_r($row);
H A Dbug68760.phpt23 while ($row = $naturalSort->fetchArray()) {
24 echo $row['col1'], "\n";
/PHP-7.4/ext/oci8/tests/
H A Dlob_022.phpt50 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
51 $result = $row['LOB_1']->load();
59 while ($row = oci_fetch_array($statement, OCI_ASSOC)) {
60 $result = $row['LOB_1']->load();
H A Dfield_funcs.phpt40 $row = oci_fetch_array($s, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
41 var_dump($row);
43 foreach ($row as $num => $field) {
H A Dfield_funcs_old.phpt40 ocifetchinto($s, $row, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
41 var_dump($row);
43 foreach ($row as $num => $field) {
H A Dfetch_row.phpt31 while ($row = oci_fetch_row($s)) {
32 var_dump($row);
H A Dimp_res_get_1.phpt59 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
60 foreach ($row as $item) {
72 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
73 foreach ($row as $item) {
H A Dimp_res_lob.phpt51 while (($row = oci_fetch_row($s)) != false) {
52 foreach ($row as $item) {
65 $row = oci_fetch_row($s);
66 foreach ($row as $item) {
H A Dbug70700.phpt47 $row = oci_fetch_array($select, OCI_ASSOC);
48 $lob = $row['DATA'];
78 $row = oci_fetch_array($select, OCI_ASSOC);
79 $lob = $row['DATA'];
109 $row = oci_fetch_array($select, OCI_ASSOC);
110 $lob = $row['DATA'];
140 $row = oci_fetch_array($select, OCI_ASSOC);
141 $lob = $row['DATA'];
H A Dfetch.phpt33 $row = ociresult($s, 1);
35 var_dump($row);
/PHP-7.4/ext/pgsql/tests/
H A D80_bug27597.phpt31 while($row = xi_fetch_array($res)) {
32 print_r($row);

Completed in 32 milliseconds

12345678910>>...14