Searched refs:change_user (Results 1 – 14 of 14) sorted by relevance
/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_change_user_oo.phpt | 2 mysqli->change_user() 28 …if (false !== ($tmp = $mysqli->change_user($user . '_unknown_really', $passwd . 'non_empty', $db))) 31 if (false !== ($tmp = $mysqli->change_user($user, $passwd . '_unknown_really', $db))) 34 if (false !== ($tmp = $mysqli->change_user($user, $passwd, $db . '_unknown_really'))) 37 // Reconnect because after 3 failed change_user attempts, the server blocks you off. 52 if (true !== ($tmp = $mysqli->change_user($user, $passwd, $db))) 74 if (false !== ($tmp = @$mysqli->change_user($user, $passwd, $db)))
|
H A D | bug74547.phpt | 2 Bug #74547 mysqli::change_user() doesn't accept null as $database argument w/strict_types
|
H A D | bug52082.phpt | 19 $link->change_user($user, $passwd, $db);
|
H A D | mysqli_insert_id_variation.phpt | 64 $link->change_user ($user, $passwd, $db);
|
H A D | mysqli_change_user_old.phpt | 37 // change_user commands
|
H A D | mysqli_change_user.phpt | 27 // Reconnect because after 3 failed change_user attempts, the server blocks you off.
|
H A D | mysqli_class_mysqli_interface.phpt | 25 'change_user' => true,
|
/PHP-8.1/ext/mysqlnd/ |
H A D | mysqlnd.h | 95 #define mysqlnd_change_user(conn, user, passwd, db, silent) ((conn)->data)->m->change_user((con… 96 …user_ex(conn, user, passwd, db, silent, passwd_len) ((conn)->data)->m->change_user((conn)->data, (…
|
H A D | mysqlnd_commands.c | 332 MYSQLND_METHOD(mysqlnd_command, change_user)(MYSQLND_CONN_DATA * const conn, const MYSQLND_CSTRING … in MYSQLND_METHOD() argument 688 MYSQLND_METHOD(mysqlnd_command, change_user),
|
H A D | mysqlnd_structs.h | 341 func_mysqlnd_execute_com_change_user change_user; in MYSQLND_CLASS_METHODS_TYPE() local 543 func_mysqlnd_conn_data__change_user change_user; in MYSQLND_CLASS_METHODS_TYPE() local
|
H A D | mysqlnd_connection.c | 1349 MYSQLND_METHOD(mysqlnd_conn_data, change_user)(MYSQLND_CONN_DATA * const conn, argument 1966 MYSQLND_METHOD(mysqlnd_conn_data, change_user),
|
H A D | mysqlnd_wireprotocol.c | 628 ret = conn->command->change_user(conn, payload, silent); in php_mysqlnd_auth_write()
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli.stub.php | 156 public function change_user(string $username, string $password, ?string $database): bool {} function in mysqli
|
H A D | mysqli_arginfo.h | 982 ZEND_ME_MAPPING(change_user, mysqli_change_user, arginfo_class_mysqli_change_user, ZEND_ACC_PUBLIC)
|
Completed in 64 milliseconds