Searched refs:MYSQLI_STORE_RESULT (Results 1 – 21 of 21) sorted by relevance
/PHP-8.2/ext/mysqli/tests/ |
H A D | mysqli_result_invalid_mode.phpt | 14 $valid = array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT); 29 mysqli_result::__construct(): Argument #2 ($result_mode) must be either MYSQLI_STORE_RESULT or MYSQ… 30 mysqli_result::__construct(): Argument #2 ($result_mode) must be either MYSQLI_STORE_RESULT or MYSQ…
|
H A D | mysqli_class_mysqli_result_interface.phpt | 105 assert(in_array($mysqli_result->type, array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT))); 107 ((MYSQLI_STORE_RESULT == $mysqli_result->type) ? 'store' : 'use'), 126 $res = new mysqli_result($link, MYSQLI_STORE_RESULT); 129 $valid = array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT);
|
H A D | bug34785.phpt | 41 $result = new my_result($link, MYSQLI_STORE_RESULT);
|
H A D | mysqli_set_charset.phpt | 33 if ((($res = mysqli_query($link, 'SHOW CHARACTER SET LIKE "latin1"', MYSQLI_STORE_RESULT)) && 35 (($res = mysqli_query($link, 'SHOW CHARACTER SET LIKE "latin2"', MYSQLI_STORE_RESULT)) && 57 … = mysqli_query($link, sprintf('SHOW CHARACTER SET LIKE "%s"', $new_charset), MYSQLI_STORE_RESULT))
|
H A D | mysqli_stmt_get_result2.phpt | 125 if (!in_array($res->type, array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT))) { 128 if ($res->type !== MYSQLI_STORE_RESULT) 129 … printf("[025] Expecting int/%d got %s/%s", MYSQLI_STORE_RESULT, gettype($res->type), $res->type);
|
H A D | mysqli_get_client_stats_skipped.phpt | 20 if (!$res = mysqli_query($link, 'SELECT id FROM test', MYSQLI_STORE_RESULT))
|
H A D | mysqli_query.phpt | 84 …if (!is_object($res = mysqli_query($link, "SELECT id FROM test ORDER BY id", MYSQLI_STORE_RESULT))) 129 mysqli_query(): Argument #3 ($result_mode) must be either MYSQLI_USE_RESULT or MYSQLI_STORE_RESULT%S
|
H A D | mysqli_data_seek.phpt | 14 if (!$res = mysqli_query($link, 'SELECT * FROM test ORDER BY id LIMIT 4', MYSQLI_STORE_RESULT))
|
H A D | mysqli_reap_async_query.phpt | 59 $link->query("SELECT 1 AS _one", MYSQLI_ASYNC | MYSQLI_STORE_RESULT);
|
H A D | mysqli_num_rows.phpt | 17 if (!$res = mysqli_query($link, $query, MYSQLI_STORE_RESULT)) {
|
H A D | mysqli_data_seek_oo.phpt | 26 if (!$res = $mysqli->query('SELECT * FROM test ORDER BY id LIMIT 4', MYSQLI_STORE_RESULT))
|
H A D | mysqli_query_iterators.phpt | 54 …if (!is_object($res = mysqli_query($link, "SELECT id FROM test ORDER BY id", MYSQLI_STORE_RESULT)))
|
H A D | mysqli_constants.phpt | 26 "MYSQLI_STORE_RESULT" => true,
|
H A D | mysqli_field_seek.phpt | 104 if (!$res = mysqli_query($link, "SELECT NULL as _null", MYSQLI_STORE_RESULT)) {
|
H A D | mysqli_get_client_stats.phpt | 149 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS _num FROM test', MYSQLI_STORE_RESULT)) 199 if (!$res = mysqli_query($link, 'SELECT id, label FROM test', MYSQLI_STORE_RESULT))
|
/PHP-8.2/ext/mysqli/ |
H A D | mysqli_priv.h | 88 #define MYSQLI_STORE_RESULT 0 macro
|
H A D | mysqli.stub.php | 127 const MYSQLI_STORE_RESULT = UNKNOWN; define 905 …public function query(string $query, int $result_mode = MYSQLI_STORE_RESULT): mysqli_result|bool {} 1067 public function __construct(mysqli $mysql, int $result_mode = MYSQLI_STORE_RESULT) {} 1546 function mysqli_query(mysqli $mysql, string $query, int $result_mode = MYSQLI_STORE_RESULT): mysqli…
|
H A D | mysqli_nonapi.c | 570 zend_long resultmode = MYSQLI_STORE_RESULT; 581 MYSQLI_STORE_RESULT != (resultmode & ~(MYSQLI_ASYNC | MYSQLI_STORE_RESULT_COPY_DATA)) 615 case MYSQLI_STORE_RESULT: 847 case MYSQLI_STORE_RESULT:
|
H A D | mysqli.c | 683 zend_long resmode = MYSQLI_STORE_RESULT; in PHP_METHOD() 692 case MYSQLI_STORE_RESULT: in PHP_METHOD()
|
H A D | mysqli_prop.c | 253 ZVAL_LONG(retval, mysqli_result_is_unbuffered(p) ? MYSQLI_USE_RESULT:MYSQLI_STORE_RESULT); in MYSQLI_MAP_PROPERTY_FUNC_LONG()
|
H A D | mysqli_arginfo.h | 1074 REGISTER_LONG_CONSTANT("MYSQLI_STORE_RESULT", MYSQLI_STORE_RESULT, CONST_PERSISTENT); in register_mysqli_symbols()
|
Completed in 36 milliseconds