Rechercher dans le manuel MySQL
28.7.7.3 mysql_change_user()
bool mysql_change_user(MYSQL *mysql, const char *user,
const char *password, const char *db)
Description
Changes the user and causes the database specified by
db
to become the default (current) database
on the connection specified by mysql
. In
subsequent queries, this database is the default for table
references that include no explicit database specifier.
mysql_change_user()
fails if
the connected user cannot be authenticated or does not have
permission to use the database. In this case, the user and
database are not changed.
Pass a db
parameter of
NULL
if you do not want to have a default
database.
This function resets the session state as if one had done a
new connect and reauthenticated. (See
Section 28.7.28, “C API Automatic Reconnection Control”.) It always performs a
ROLLBACK
of
any active transactions, closes and drops all temporary
tables, and unlocks all locked tables. Session system
variables are reset to the values of the corresponding global
system variables. Prepared statements are released and
HANDLER
variables are closed.
Locks acquired with GET_LOCK()
are released. These effects occur even if the user did not
change.
To reset the connection state in a more lightweight manner
without changing the user, use
mysql_reset_connection()
.
The same that you can get from
mysql_real_connect()
, plus:
Commands were executed in an improper order.
The MySQL server has gone away.
The connection to the server was lost during the query.
An unknown error occurred.
The MySQL server does not implement this command (probably an old server).
The user or password was wrong.
The database did not exist.
The user did not have access rights to the database.
The database name was too long.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-mysql-change-user.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.