Closed nickkulese closed 1 year ago
You might need to be a little bit more explicit with your description of what you did.
Alright, so I executed these commands in mysql:
mysql> create database db_example; -- Create the new database mysql> create user 'springuser'@'%' identified by 'ThePassword'; -- Creates the user mysql> grant all on db_example.* to 'springuser'@'%'; -- Gives all the privileges to the new user on the newly created database
Then just tried to run the complete one, using ItelliJ Idea.
So what went wrong where? What did you do when you “tried to run the complete one?” Was there a stack trace with that exception or an error message?
Can not run it :(
Getting error: MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '??' at line 1
I'm doing the same as it's written in ReadMe. Using MySQL 8.0.15
What could be wrong here?