Searched refs:MYSQLI_STORE_RESULT (Results 1 – 19 of 19) sorted by relevance
/PHP-7.2/ext/mysqli/tests/ |
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 if (!is_object($res = new mysqli_result($link, MYSQLI_STORE_RESULT))) 134 $valid = array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT); 152 if (!is_object($res = @new mysqli_result($link, MYSQLI_STORE_RESULT, 1)))
|
H A D | mysqli_mysqli_result_invalid_mode.phpt | 14 $valid = array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT);
|
H A D | bug34785.phpt | 40 $result = new my_result($link, MYSQLI_STORE_RESULT);
|
H A D | mysqli_set_charset.phpt | 35 if ((($res = mysqli_query($link, 'SHOW CHARACTER SET LIKE "latin1"', MYSQLI_STORE_RESULT)) && 37 (($res = mysqli_query($link, 'SHOW CHARACTER SET LIKE "latin2"', MYSQLI_STORE_RESULT)) && 73 … = mysqli_query($link, sprintf('SHOW CHARACTER SET LIKE "%s"', $new_charset), MYSQLI_STORE_RESULT))
|
H A D | mysqli_stmt_get_result2.phpt | 137 if (!in_array($res->type, array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT))) { 140 if ($res->type !== MYSQLI_STORE_RESULT) 141 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 | 93 if (!is_object($res = mysqli_query($link, "SELECT id FROM test ORDER BY id", MYSQLI_STORE_RESULT))) 97 $valid = array(MYSQLI_USE_RESULT, MYSQLI_STORE_RESULT);
|
H A D | mysqli_data_seek.phpt | 26 if (!$res = mysqli_query($link, 'SELECT * FROM test ORDER BY id LIMIT 4', MYSQLI_STORE_RESULT))
|
H A D | mysqli_num_rows.phpt | 26 if (!$res = mysqli_query($link, $query, MYSQLI_STORE_RESULT)) {
|
H A D | mysqli_query_iterators.phpt | 49 if (!is_object($res = mysqli_query($link, "SELECT id FROM test ORDER BY id", MYSQLI_STORE_RESULT)))
|
H A D | mysqli_reap_async_query.phpt | 73 $link->query("SELECT 1 AS _one", MYSQLI_ASYNC | 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_constants.phpt | 33 "MYSQLI_STORE_RESULT" => true,
|
H A D | mysqli_field_seek.phpt | 109 if (!$res = mysqli_query($link, "SELECT NULL as _null", MYSQLI_STORE_RESULT)) {
|
H A D | mysqli_get_client_stats.phpt | 153 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS _num FROM test', MYSQLI_STORE_RESULT)) 203 if (!$res = mysqli_query($link, 'SELECT id, label FROM test', MYSQLI_STORE_RESULT))
|
/PHP-7.2/ext/mysqli/ |
H A D | mysqli_priv.h | 105 #define MYSQLI_STORE_RESULT 0 macro
|
H A D | mysqli_nonapi.c | 607 zend_long resultmode = MYSQLI_STORE_RESULT; 618 …_RESULT && (resultmode & ~(MYSQLI_ASYNC | MYSQLI_STORE_RESULT_COPY_DATA)) != MYSQLI_STORE_RESULT) { 620 …ode & ~MYSQLI_ASYNC) != MYSQLI_USE_RESULT && (resultmode & ~MYSQLI_ASYNC) != MYSQLI_STORE_RESULT) { 660 case MYSQLI_STORE_RESULT: 888 case MYSQLI_STORE_RESULT:
|
H A D | mysqli.c | 731 REGISTER_LONG_CONSTANT("MYSQLI_STORE_RESULT", MYSQLI_STORE_RESULT, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION() 1107 zend_long resmode = MYSQLI_STORE_RESULT; in PHP_FUNCTION() 1127 case MYSQLI_STORE_RESULT: in PHP_FUNCTION()
|
H A D | mysqli_prop.c | 280 ZVAL_LONG(retval, mysqli_result_is_unbuffered(p) ? MYSQLI_USE_RESULT:MYSQLI_STORE_RESULT); in result_type_read()
|
Completed in 59 milliseconds