Home
last modified time | relevance | path

Searched refs:row (Results 251 – 275 of 348) sorted by relevance

1...<<11121314

/PHP-7.2/ext/oci8/tests/
H A Dimp_res_close.phpt44 while (($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
45 foreach ($row as $item) {
H A Dimp_res_get_close_1.phpt44 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
45 foreach ($row as $item) {
H A Dxmltype_01.phpt44 $row = oci_fetch_row($s);
45 $data = $row[0]->load();
H A Dimp_res_get_cursor.phpt55 while (($row = oci_fetch_assoc($s)) != false) {
56 foreach ($row as $item) {
H A Dimp_res_cursor.phpt55 while (($row = oci_fetch_assoc($s)) != false) {
56 foreach ($row as $item) {
H A Dlob_030.phpt37 $row = oci_fetch_array($s, OCI_RETURN_LOBS);
39 var_dump(strlen($row[0]));
H A Dbind_char_2_11gR1.phpt77 while ($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) {
78 foreach ($row as $item) {
H A Dbind_char_2.phpt77 while ($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) {
78 foreach ($row as $item) {
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_explain_metadata.phpt23 if (!$row = mysqli_fetch_assoc($res)) {
28 $num_fields = count($row);
29 foreach ($row as $name => $value)
33 while ($row = mysqli_fetch_assoc($res))
H A Dmysqli_ps_select_union.phpt20 while ($row = $res->fetch_assoc()) {
21 $data[] = $row['column1'];
22 var_dump($row['column1']);
77 while ($row = $res->fetch_assoc()) {
78 $data[] = $row['column1'];
126 while ($row = $res->fetch_assoc()) {
127 $data[] = $row['column1'];
H A Dmysqli_stmt_reset.phpt86 if (!$row = mysqli_fetch_assoc($res))
91 if ($row['label'] != '')
92 printf("[020] Expecting empty string, got string/%s\n", $row['label']);
H A Dbug64726.phpt22 Warning: mysqli_result::fetch_object(): Error while reading a row in %sbug64726.php on line %d
H A D057.phpt54 $row = mysqli_fetch_row($result);
58 var_dump($row);
H A Dlocal_infile_tools.inc14 $row = mysqli_fetch_assoc($res);
16 if ('ON' != $row['Value'])
17 … return sprintf("Server variable 'local_infile' seems not set to 'ON', found '%s'", $row['Value']);
H A Dmysqli_change_user_set_names.phpt35 while ($row = mysqli_fetch_assoc($res))
36 $charsets[$row['Charset']] = $row['Default collation'];
/PHP-7.2/ext/pdo_mysql/tests/
H A Dbug_39858.phpt11 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dbug_44707.phpt13 $row = $stmt->fetch(PDO::FETCH_ASSOC);
15 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dpdo_mysql_prepare_emulated_anonymous.phpt25 $stmt->execute(array('first row'));
44 $stmt->execute(array('first row'));
/PHP-7.2/ext/pdo/tests/
H A Dpdo_022.phpt42 foreach ($data as $row) {
43 $stmt->execute($row);
H A Dpdo_025.phpt31 foreach ($data as $row) {
32 $stmt->execute($row);
H A Dpdo_029.phpt68 foreach ($data as $row) {
69 $stmt->execute($row);
H A Dpdo_030.phpt66 foreach ($data as $row) {
67 $stmt->execute($row);
/PHP-7.2/ext/sqlite3/tests/
H A Dbug53463.phpt14 while ($row = $result->fetchArray(SQLITE3_NUM)) {
/PHP-7.2/ext/pgsql/tests/
H A D08escape.phpt54 $row = pg_fetch_array($result, 0, PGSQL_ASSOC);
56 if ($data === pg_unescape_bytea($row['bin'])) {
/PHP-7.2/ext/pgsql/
H A Dpgsql.c2650 zend_long row; local
2680 if (row < 0 || row >= PQntuples(pgsql_result)) {
2748 row = -1;
2752 if (row < 0) {
2771 if (row < 0 || row >= PQntuples(pgsql_result)) {
2989 zend_long row; local
3000 if (row < 0 || row >= PQntuples(pg_result->result)) {
3005 pg_result->row = (int)row;
3018 zend_long row; local
3047 if (row < 0 || row >= PQntuples(pgsql_result)) {
[all …]

Completed in 51 milliseconds

1...<<11121314