diff options
author | Ibrahem Hossam <ibrahem.h.basyone@gmail.com> | 2017-01-03 03:12:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-03 03:12:56 +0200 |
commit | 6dc943463504bf099f43102f20a84cf56cc25784 (patch) | |
tree | 0b9c6c76160d5fdf3e94e791b344a76ae840f5ec | |
parent | a540862fa99d0503548fe86b266b8b91d63bcc98 (diff) | |
parent | 04eec631b52ac7b1e532050f31d5b3711c4b0baa (diff) | |
download | hercules-6dc943463504bf099f43102f20a84cf56cc25784.tar.gz hercules-6dc943463504bf099f43102f20a84cf56cc25784.tar.bz2 hercules-6dc943463504bf099f43102f20a84cf56cc25784.tar.xz hercules-6dc943463504bf099f43102f20a84cf56cc25784.zip |
Merge pull request #1526 from fisune/master
Fixing an small markdown mistake
-rw-r--r-- | README.md | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -101,8 +101,7 @@ the end of this file). 3. Connect to the MySQL server as root: - Create a database (hercules): `CREATE DATABASE hercules;` - Create a user (hercules): `CREATE USER 'hercules'@'localhost' IDENTIFIED BY 'password';`. - - Give permissions (GRANT SELECT,INSERT,UPDATE,DELETE) to the user: `GRANT SELECT,INSERT,UPDATE,DELETE ON - \`hercules\`.* TO 'hercules'@'localhost';` + - Give permissions (GRANT SELECT,INSERT,UPDATE,DELETE) to the user: `GRANT SELECT,INSERT,UPDATE,DELETE ON hercules.* TO 'hercules'@'localhost';` 4. Connect to the MySQL server as the new user: - Import the .sql files in /sql-files/ into the new database. 5. Start Visual Studio and load the provided solution: @@ -123,8 +122,7 @@ the end of this file). 4. Connect to the MySQL server as root: - Create a database (hercules): `CREATE DATABASE hercules;` - Create a user (hercules): `CREATE USER 'hercules'@'localhost' IDENTIFIED BY 'password';`. - - Give permissions (GRANT SELECT,INSERT,UPDATE,DELETE) to the user: `GRANT SELECT,INSERT,UPDATE,DELETE ON - \`hercules\`.* TO 'hercules'@'localhost';` + - Give permissions (GRANT SELECT,INSERT,UPDATE,DELETE) to the user: `GRANT SELECT,INSERT,UPDATE,DELETE ON hercules.* TO 'hercules'@'localhost';` 5. Connect to the MySQL server as the new user: - Import the .sql files in /sql-files/ into the new database. 6. Enter the Hercules directory and configure/build Hercules |