Searched refs:fetch_row (Results 1 – 21 of 21) sorted by relevance
/PHP-7.3/ext/mysqli/tests/ |
H A D | bug52082.phpt | 17 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 D | 074.phpt | 17 var_dump($result->fetch_row()); 21 var_dump($result->fetch_row());
|
H A D | bug55283.phpt | 17 $row = $res->fetch_row(); 20 while ($row = $res->fetch_row()) 49 var_dump($r->fetch_row()); 57 var_dump($r2->fetch_row());
|
H A D | bug33491.phpt | 17 $result->fetch_row(); // <- Here be crash 29 Fatal error: Uncaught Error: Call to a member function fetch_row() on bool in %sbug33491.php:%d
|
H A D | bug73462.phpt | 16 $c1 = $result->fetch_row(); 28 $c3 = $result->fetch_row();
|
H A D | 062.phpt | 18 $row = $myresult->fetch_row();
|
H A D | 049.phpt | 18 $row = $result->fetch_row();
|
H A D | bug34785.phpt | 41 $row = $result->fetch_row();
|
H A D | bug29311.phpt | 41 $row = $result->fetch_row();
|
H A D | bug51647.phpt | 17 $row = $res->fetch_row(); 20 while ($row = $res->fetch_row())
|
H A D | bug49027.phpt | 21 var_dump($link->query("SELECT 42")->fetch_row());
|
H A D | mysqli_class_mysqli_result_interface.phpt | 16 $row = $mysqli_result->fetch_row(); 37 'fetch_row' => true,
|
H A D | bug_mysql_49406.phpt | 21 if (!$row = $res->fetch_row())
|
H A D | mysqli_stmt_bind_param_many_columns.phpt | 32 list($old_max_allowed_packet) = $link->query("SELECT @@max_allowed_packet")->fetch_row();
|
H A D | mysqli_stmt_bind_limits.phpt | 92 $row = $res->fetch_row();
|
H A D | connect.inc | 133 ($row = $res->fetch_row()) &&
|
H A D | mysqli_class_mysqli_result_reflection.phpt | 258 Inspecting method 'fetch_row'
|
/PHP-7.3/ext/mysqlnd/ |
H A D | mysqlnd_result.c | 777 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row)(MYSQLND_RES * result, void * param, const unsi… in MYSQLND_METHOD() argument 1249 MYSQLND_METHOD(mysqlnd_res, fetch_row)(MYSQLND_RES * result, void * param, const unsigned int flags… in MYSQLND_METHOD() argument 1251 …c f = result->stored_data? result->stored_data->m.fetch_row:(result->unbuf? result->unbuf->m.fetch… in MYSQLND_METHOD() 1491 …while ((PASS == result->m.fetch_row(result, NULL, 0, &fetched_anything)) && fetched_anything == TR… in MYSQLND_METHOD() 1742 if (FAIL == result->m.fetch_row(result, (void *)return_value, flags, &fetched_anything)) { in MYSQLND_METHOD() 1775 …ult->stored_data && result->stored_data->m.fetch_row == MYSQLND_METHOD(mysqlnd_result_buffered_zva… in MYSQLND_METHOD() 1777 … else if (result->unbuf && result->unbuf->m.fetch_row == MYSQLND_METHOD(mysqlnd_result_unbuffered,… in MYSQLND_METHOD() 1861 MYSQLND_METHOD(mysqlnd_res, fetch_row), 1889 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row), 2004 ret->m.fetch_row = MYSQLND_METHOD(mysqlnd_result_buffered_zval, fetch_row); in mysqlnd_result_buffered_zval_init() [all …]
|
H A D | mysqlnd_structs.h | 623 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local 665 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local 682 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local
|
H A D | mysqlnd_ps.c | 93 result->stored_data->m.fetch_row = mysqlnd_stmt_fetch_row_buffered; in MYSQLND_METHOD() 1013 result->unbuf->m.fetch_row = stmt->cursor_exists? mysqlnd_fetch_stmt_row_cursor: in MYSQLND_METHOD() 1222 ret = stmt->result->m.fetch_row(stmt->result, (void*)s, 0, fetched_anything); in MYSQLND_METHOD()
|
/PHP-7.3/ext/mysqli/ |
H A D | mysqli_fe.c | 622 PHP_FALIAS(fetch_row, mysqli_fetch_row, arginfo_mysqli_no_params)
|
Completed in 43 milliseconds