Skip to content

Commit cf57687

Browse files
committed
Updates from Lars
1 parent 6a5fe20 commit cf57687

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

code/pdo/NOTES.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
To get started run the following SQL commands:
22

33
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';
4+
CREATE USER 'fred'@'localhost' IDENTIFIED BY 'zap';
5+
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';
68

79
USE misc; (Or select misc in phpMyAdmin)
810

0 commit comments

Comments
 (0)