忘れっぽいのでメモとして残しておく。
権限を付与する際に以前は
grant all privileges on DB名.* to 'user'@'localhost' identified by 'password';
こう書いていたが、エラーが出るようになった。(バージョン8で構文が変わったらしい)
下記構文で実行したら成功した。
grant all privileges on DB名.* to 'user'@'localhost';
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
忘れっぽいのでメモとして残しておく。
権限を付与する際に以前は
grant all privileges on DB名.* to 'user'@'localhost' identified by 'password';
こう書いていたが、エラーが出るようになった。(バージョン8で構文が変わったらしい)
下記構文で実行したら成功した。
grant all privileges on DB名.* to 'user'@'localhost';
Register as a new user and use Qiita more conveniently
Go to list of users who liked