Create User Tool

The Create User Tool allows users to visually create users for MySQL and PostgreSQL.

The create user tools prompts the user for database specific information such as user name, password, privileges, etc. and then generates the database specific SQL to create the user.

Listed below is an example SQL statement generated by the Create User Tool for MySQL

GRANT ALL PRIVILEGES ON *.* TO 'test_user'@'localhost'
IDENTIFIED BY 'test_pass' WITH GRANT OPTION;

GRANT ALL PRIVILEGES ON *.* TO 'test_user'@'%'
IDENTIFIED BY 'test_pass' WITH GRANT OPTION;

The following are links to information about the Create User tool for some of the databases supported by RazorSQL:

MySQL Create User
PostgreSQL Create User