/ Published in: MySQL
Snippet used to create users on databases
Expand |
Embed | Plain Text
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE ON database.* TO 'user'@'localhost' IDENTIFIED BY 'password';
You need to login to post a comment.
digitalclubb on 06/22/11
1 person have marked this snippet as a favorite
Snippet used to create users on databases
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE ON database.* TO 'user'@'localhost' IDENTIFIED BY 'password';
You need to login to post a comment.