/PHP-8.3/ext/mysqli/tests/ |
H A D | bug31668.phpt | 16 $res = $mysql->store_result(); 30 $res = $mysql->store_result();
|
H A D | bug45289.phpt | 2 Bug #45289 (Bogus store_result on PS) 27 if ($res = $link->store_result()) {
|
H A D | ps_cursor_multiple_result_sets.phpt | 45 $stmt->store_result(); 52 $stmt->store_result(); 89 store_result:
|
H A D | bug62046.phpt | 22 if (FALSE === $stmt->store_result()) { 23 printf("[004] store_result failed, [%d] %s\n", $stmt->errorno, $stmt->error);
|
H A D | 069.phpt | 16 $res = $mysql->store_result();
|
H A D | bug77597.phpt | 22 $result = $mysqli->store_result(MYSQLI_STORE_RESULT_COPY_DATA);
|
H A D | bug54221.phpt | 27 $sth = $link->store_result();
|
H A D | bug80837.phpt | 26 $statement->store_result();
|
H A D | gracefull_fail_on_empty_result_set.phpt | 21 var_dump($link->store_result()); // now what happens here!?
|
H A D | mysqli_next_result_error.phpt | 22 if ($res = $mysqli->store_result()) {
|
H A D | bug35759.phpt | 40 $stmt->store_result();
|
H A D | bug42548.phpt | 33 if ($objResult = $mysqli->store_result()) {
|
H A D | mysqli_stmt_attr_set.phpt | 51 $stmt->store_result(); 71 $stmt->store_result(); 91 $stmt->store_result();
|
H A D | bug_mysql_49406.phpt | 34 if (!$stmt->execute() || !$stmt->store_result())
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 39 'store_result' => true,
|
H A D | bug79375.phpt | 31 $stmt->store_result();
|
H A D | mysqli_store_result_copy.phpt | 166 if ($res = $link->store_result(MYSQLI_STORE_RESULT_COPY_DATA)) {
|
H A D | mysqli_class_mysqli_interface.phpt | 59 'store_result' => true,
|
H A D | mysqli_stmt_bind_result_format.phpt | 302 if (!$stmt->store_result()) {
|
/PHP-8.3/ext/mysqli/ |
H A D | mysqli.stub.php | 1018 public function store_result(int $mode = 0): mysqli_result|false {} 1325 public function store_result(): bool {}
|
/PHP-8.3/ext/mysqlnd/ |
H A D | mysqlnd.h | 116 #define mysqlnd_store_result(conn) ((conn)->data)->m->store_result((conn)->data) 214 …result(stmt) (!mysqlnd_stmt_field_count((stmt)) ? PASS:((stmt)->m->store_result((stmt))? PASS:F…
|
H A D | mysqlnd_ps.c | 72 MYSQLND_METHOD(mysqlnd_stmt, store_result)(MYSQLND_STMT * const s) in MYSQLND_METHOD() argument 96 stmt->default_rset_handler = s->m->store_result; in MYSQLND_METHOD() 189 if (result->m.store_result(result, conn, stmt)) { in MYSQLND_METHOD() 581 stmt->default_rset_handler = s->m->store_result; in mysqlnd_stmt_execute_parse_response() 1933 MYSQLND_METHOD(mysqlnd_stmt, store_result),
|
H A D | mysqlnd_structs.h | 528 func_mysqlnd_conn_data__store_result store_result; in MYSQLND_CLASS_METHODS_TYPE() local 657 func_mysqlnd_res__store_result store_result; in MYSQLND_CLASS_METHODS_TYPE() local 787 func_mysqlnd_stmt__store_result store_result; in MYSQLND_CLASS_METHODS_TYPE() local
|
H A D | mysqlnd_connection.c | 857 result = conn->m->store_result(conn); 1618 MYSQLND_METHOD(mysqlnd_conn_data, store_result)(MYSQLND_CONN_DATA * const conn) argument 1635 MYSQLND_RES *result = conn->current_result->m.store_result(conn->current_result, conn, NULL); 1941 MYSQLND_METHOD(mysqlnd_conn_data, store_result),
|
H A D | mysqlnd_result.c | 745 MYSQLND_METHOD(mysqlnd_res, store_result)(MYSQLND_RES * result, in MYSQLND_METHOD() argument 1063 MYSQLND_METHOD(mysqlnd_res, store_result),
|