Searched refs:MYSQLI_STORE_RESULT (Results 1 – 21 of 21) sorted by relevance
/php-src/ext/mysqli/tests/ |
H A D | mysqli_result_invalid_mode.phpt | 28 mysqli_result::__construct(): Argument #2 ($result_mode) must be either MYSQLI_STORE_RESULT or MYSQ… 29 mysqli_result::__construct(): Argument #2 ($result_mode) must be either MYSQLI_STORE_RESULT or MYSQ…
|
H A D | mysqli_class_mysqli_result_interface.phpt | 104 assert(in_array($mysqli_result->type, array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT))); 106 ((MYSQLI_STORE_RESULT == $mysqli_result->type) ? 'store' : 'use'), 125 new mysqli_result($link, MYSQLI_STORE_RESULT); 128 $valid = array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT); 169 mysqli_result::__construct(): Argument #2 ($result_mode) must be either MYSQLI_STORE_RESULT or MYSQ…
|
H A D | mysqli_set_charset.phpt | 11 if ((($res = mysqli_query($link, 'SHOW CHARACTER SET LIKE "latin1"', MYSQLI_STORE_RESULT)) && 13 (($res = mysqli_query($link, 'SHOW CHARACTER SET LIKE "latin2"', MYSQLI_STORE_RESULT)) && 34 … = mysqli_query($link, sprintf('SHOW CHARACTER SET LIKE "%s"', $new_charset), MYSQLI_STORE_RESULT))
|
H A D | bug34785.phpt | 41 $result = new my_result($link, MYSQLI_STORE_RESULT);
|
H A D | mysqli_stmt_get_result2.phpt | 121 if (!in_array($res->type, array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT))) { 124 if ($res->type !== MYSQLI_STORE_RESULT) 125 … 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 | 17 if (!$res = mysqli_query($link, 'SELECT id FROM test', MYSQLI_STORE_RESULT))
|
H A D | mysqli_query.phpt | 82 …if (!is_object($res = mysqli_query($link, "SELECT id FROM test ORDER BY id", MYSQLI_STORE_RESULT))) 127 mysqli_query(): Argument #3 ($result_mode) must be either MYSQLI_USE_RESULT or MYSQLI_STORE_RESULT%S
|
H A D | mysqli_data_seek.phpt | 12 if (!$res = mysqli_query($link, 'SELECT * FROM test ORDER BY id LIMIT 4', MYSQLI_STORE_RESULT))
|
H A D | mysqli_reap_async_query.phpt | 55 $link->query("SELECT 1 AS _one", MYSQLI_ASYNC | MYSQLI_STORE_RESULT);
|
H A D | mysqli_num_rows.phpt | 15 if (!$res = mysqli_query($link, $query, MYSQLI_STORE_RESULT)) {
|
H A D | mysqli_data_seek_oo.phpt | 25 if (!$res = $mysqli->query('SELECT * FROM test ORDER BY id LIMIT 4', MYSQLI_STORE_RESULT))
|
H A D | mysqli_query_iterators.phpt | 50 …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 | 102 if (!$res = mysqli_query($link, "SELECT NULL as _null", MYSQLI_STORE_RESULT)) {
|
H A D | mysqli_get_client_stats.phpt | 145 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS _num FROM test', MYSQLI_STORE_RESULT)) 195 if (!$res = mysqli_query($link, 'SELECT id, label FROM test', MYSQLI_STORE_RESULT))
|
/php-src/ext/mysqli/ |
H A D | mysqli_priv.h | 88 #define MYSQLI_STORE_RESULT 0 macro
|
H A D | mysqli.stub.php | 125 const MYSQLI_STORE_RESULT = UNKNOWN; define 885 …public function query(string $query, int $result_mode = MYSQLI_STORE_RESULT): mysqli_result|bool {} 1047 public function __construct(mysqli $mysql, int $result_mode = MYSQLI_STORE_RESULT) {} 1527 function mysqli_query(mysqli $mysql, string $query, int $result_mode = MYSQLI_STORE_RESULT): mysqli…
|
H A D | mysqli_nonapi.c | 568 zend_long resultmode = MYSQLI_STORE_RESULT; 579 MYSQLI_STORE_RESULT != (resultmode & ~(MYSQLI_ASYNC | MYSQLI_STORE_RESULT_COPY_DATA)) 613 case MYSQLI_STORE_RESULT: 836 case MYSQLI_STORE_RESULT:
|
H A D | mysqli.c | 682 zend_long resmode = MYSQLI_STORE_RESULT; in PHP_METHOD() 691 case MYSQLI_STORE_RESULT: in PHP_METHOD()
|
H A D | mysqli_prop.c | 251 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 | 1059 REGISTER_LONG_CONSTANT("MYSQLI_STORE_RESULT", MYSQLI_STORE_RESULT, CONST_PERSISTENT); in register_mysqli_symbols()
|
Completed in 43 milliseconds