We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a5fe20 commit cf57687Copy full SHA for cf57687
code/pdo/NOTES.txt
@@ -1,8 +1,10 @@
1
To get started run the following SQL commands:
2
3
CREATE DATABASE misc;
4
-GRANT ALL ON misc.* TO 'fred'@'localhost' IDENTIFIED BY 'zap';
5
-GRANT ALL ON misc.* TO 'fred'@'127.0.0.1' IDENTIFIED BY 'zap';
+CREATE USER 'fred'@'localhost' IDENTIFIED BY 'zap';
+GRANT ALL ON misc.* TO 'fred'@'localhost';
6
+CREATE USER 'fred'@'127.0.0.1' IDENTIFIED BY 'zap';
7
+GRANT ALL ON misc.* TO 'fred'@'127.0.0.1';
8
9
USE misc; (Or select misc in phpMyAdmin)
10
0 commit comments