c#.net
mysql 비밀번호 잊어버렸을때
우유빛
2009. 6. 22. 16:39
xp 기반
mysqld.exe --skip-grant
mysql.exe
use mysql;
UPDATE user SET password=PASSWORD('변경할패스워드') where user='root';
FLUSH PRIVILEGES;
quit