Home
last modified time | relevance | path

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

1...<<11121314

/PHP-7.4/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 D057.phpt54 $row = mysqli_fetch_row($result);
58 var_dump($row);
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 Dmysqli_fetch_lengths_oo.phpt22 while ($row = $res->fetch_assoc())
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.4/ext/sqlite3/tests/
H A Dbug53463.phpt14 while ($row = $result->fetchArray(SQLITE3_NUM)) {
/PHP-7.4/ext/pdo/tests/
H A Dpdo_022.phpt43 foreach ($data as $row) {
44 $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.4/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_74376.phpt28 …y(): SQLSTATE[21000]: Cardinality violation: 1242 Subquery returns more than 1 row in %s on line %d
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.4/ext/oci8/tests/
H A Dimp_res_cursor.phpt55 while (($row = oci_fetch_assoc($s)) != false) {
56 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 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.4/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.4/ext/pgsql/
H A Dpgsql.c2649 zend_long row; local
2679 if (row < 0 || row >= PQntuples(pgsql_result)) {
2747 row = -1;
2751 if (row < 0) {
2770 if (row < 0 || row >= PQntuples(pgsql_result)) {
2986 zend_long row; local
2997 if (row < 0 || row >= PQntuples(pg_result->result)) {
3002 pg_result->row = (int)row;
3015 zend_long row; local
3044 if (row < 0 || row >= PQntuples(pgsql_result)) {
[all …]
/PHP-7.4/ext/pdo_firebird/tests/
H A Dbug_62024.phpt2 Bug #62024 Cannot insert second row with null using parametrized query (Firebird PDO)

Completed in 68 milliseconds

1...<<11121314