Go to the first, previous, next, last section, table of contents.


What can the privilege system do.

The basic function of the MySQL privilege system is to give a username on a host select, insert, update and delete privileges on a database.

Extra functionality includes the ability to have a anonymous user and give permission to use MySQL specific funtions like LOAD DATA INFILE.

Please note that the user names for a SQL database, like MySQL, has nothing to do with Unix users. As a convenience most MySQL clients tries to log in with the current user name, but this may be changed with the --user switch. This means that you can't in any way make a database secure without having passwords for all users.


Go to the first, previous, next, last section, table of contents.