Home
last modified time | relevance | path

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

/PHP-8.3/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 false in %sbug33491.php:%d
H A Dbug73462.phpt16 $c1 = $result->fetch_row();
32 $c3 = $result->fetch_row();
H A D049.phpt18 $row = $result->fetch_row();
H A D062.phpt19 $row = $myresult->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.phpt15 $row = $mysqli_result->fetch_row();
37 'fetch_row' => true,
H A Dmysqli_stmt_bind_param_many_columns.phpt32 list($old_max_allowed_packet) = $link->query("SELECT @@max_allowed_packet")->fetch_row();
H A Dbug_mysql_49406.phpt22 if (!$row = $res->fetch_row())
H A Dconnect.inc91 && ($row = $res->fetch_row())
H A Dmysqli_stmt_bind_limits.phpt95 $row = $res->fetch_row();
/PHP-8.3/ext/odbc/tests/
H A Dodbc_fetch_row_001.phpt14 odbc_exec($conn, 'CREATE TABLE fetch_row (test INT)');
16 odbc_exec($conn, 'INSERT INTO fetch_row VALUES (1), (2)');
18 $res = odbc_exec($conn, 'SELECT * FROM fetch_row');
40 odbc_exec($conn, 'DROP TABLE fetch_row');
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_result.c411 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row)(MYSQLND_RES * result, zval **row_ptr, const un… in MYSQLND_METHOD() argument
552 MYSQLND_METHOD(mysqlnd_result_buffered, fetch_row)(MYSQLND_RES * result, zval **row_ptr, const unsi… in MYSQLND_METHOD() argument
605 MYSQLND_METHOD(mysqlnd_res, fetch_row)(MYSQLND_RES *result, zval **row_ptr, const unsigned int flag… in MYSQLND_METHOD() argument
608 result->stored_data ? result->stored_data->m.fetch_row : in MYSQLND_METHOD()
609 result->unbuf ? result->unbuf->m.fetch_row : NULL; in MYSQLND_METHOD()
805 …while ((PASS == result->m.fetch_row(result, NULL, 0, &fetched_anything)) && fetched_anything == TR… in MYSQLND_METHOD()
981 if (FAIL == result->m.fetch_row(result, &row_data, flags, &fetched_anything)) { in MYSQLND_METHOD()
1039 if (result->m.fetch_row(result, &row_data, 0, &fetched_anything) == PASS && fetched_anything) { in MYSQLND_METHOD()
1061 MYSQLND_METHOD(mysqlnd_res, fetch_row),
1091 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row),
[all …]
H A Dmysqlnd_structs.h654 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local
692 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local
706 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.3/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 71 milliseconds