Home
last modified time | relevance | path

Searched refs:fetch_row (Results 1 – 23 of 23) sorted by relevance

/PHP-8.2/ext/mysqli/tests/
H A Dbug52082.phpt17 var_dump($link->query("show variables like 'character_set_client'")->fetch_row());
18 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row());
20 var_dump($link->query("show variables like 'character_set_client'")->fetch_row());
21 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row());
H A D074.phpt18 var_dump($result->fetch_row());
22 var_dump($result->fetch_row());
H A Dbug55283.phpt23 $row = $res->fetch_row();
26 while ($row = $res->fetch_row())
55 var_dump($r->fetch_row());
63 var_dump($r2->fetch_row());
H A Dbug33491.phpt18 $result->fetch_row(); // <- Here be crash
30 Fatal error: Uncaught Error: Call to a member function fetch_row() on bool in %sbug33491.php:%d
H A Dbug73462.phpt16 $c1 = $result->fetch_row();
32 $c3 = $result->fetch_row();
H A D062.phpt19 $row = $myresult->fetch_row();
H A D049.phpt18 $row = $result->fetch_row();
H A Dbug34785.phpt42 $row = $result->fetch_row();
H A Dbug29311.phpt42 $row = $result->fetch_row();
H A Dbug79375.phpt85 $res->fetch_row();
86 $res->fetch_row();
133 // try it again using fetch_row on a result object
H A Dbug49027.phpt22 var_dump($link->query("SELECT 42")->fetch_row());
H A Dbug51647.phpt23 $row = $res->fetch_row();
26 while ($row = $res->fetch_row())
H A Dmysqli_class_mysqli_result_interface.phpt16 $row = $mysqli_result->fetch_row();
38 'fetch_row' => true,
H A Dbug_mysql_49406.phpt22 if (!$row = $res->fetch_row())
H A Dmysqli_stmt_bind_param_many_columns.phpt32 list($old_max_allowed_packet) = $link->query("SELECT @@max_allowed_packet")->fetch_row();
H A Dmysqli_stmt_bind_limits.phpt94 $row = $res->fetch_row();
H A Dconnect.inc101 && ($row = $res->fetch_row())
/PHP-8.2/ext/mysqlnd/
H A Dmysqlnd_result.c413 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row)(MYSQLND_RES * result, zval **row_ptr, const un… in MYSQLND_METHOD() argument
554 MYSQLND_METHOD(mysqlnd_result_buffered, fetch_row)(MYSQLND_RES * result, zval **row_ptr, const unsi… in MYSQLND_METHOD() argument
607 MYSQLND_METHOD(mysqlnd_res, fetch_row)(MYSQLND_RES *result, zval **row_ptr, const unsigned int flag… in MYSQLND_METHOD() argument
610 result->stored_data ? result->stored_data->m.fetch_row : in MYSQLND_METHOD()
611 result->unbuf ? result->unbuf->m.fetch_row : NULL; in MYSQLND_METHOD()
807 …while ((PASS == result->m.fetch_row(result, NULL, 0, &fetched_anything)) && fetched_anything == TR… in MYSQLND_METHOD()
983 if (FAIL == result->m.fetch_row(result, &row_data, flags, &fetched_anything)) { in MYSQLND_METHOD()
1041 if (result->m.fetch_row(result, &row_data, 0, &fetched_anything) == PASS && fetched_anything) { in MYSQLND_METHOD()
1063 MYSQLND_METHOD(mysqlnd_res, fetch_row),
1093 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row),
[all …]
H A Dmysqlnd_structs.h657 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local
695 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local
709 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local
H A Dmysqlnd_ps.c745 result->unbuf->m.fetch_row = mysqlnd_fetch_stmt_row_cursor; in MYSQLND_METHOD()
879 ret = stmt->result->m.fetch_row(stmt->result, &row_data, 0, fetched_anything); in MYSQLND_METHOD()
893 ret = stmt->result->m.fetch_row(stmt->result, NULL, 0, fetched_anything); in MYSQLND_METHOD()
H A Dmysqlnd.h104 (result)->m.fetch_row((result), (row_ptr), 0, (fetched))
/PHP-8.2/ext/mysqli/
H A Dmysqli.stub.php1138 public function fetch_row(): array|null|false {}
H A Dmysqli_arginfo.h1000 …ZEND_ME_MAPPING(fetch_row, mysqli_fetch_row, arginfo_class_mysqli_result_fetch_row, ZEND_ACC_PUBLI…

Completed in 84 milliseconds