Running mysql from terminal -


i'm trying create database in terminal error

error 1044 (42000): access denied user ''@'localhost' database 'mydatabase' 

all i've done far install mysql , install workbench go along it.

this personal computer have administrator privilege log-in account.

another thing database created in workbench doesn't show when type command

show database; 

in terminal.

you've login. try:

mysql -u root -p

you asked password.

more information: mysql --help

hope helps. :-)


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -