Im following forcers guide to making my own server. I have gottin to the 8th step. I have to put in a few queries in my mysql command line client. The first thing wich is
SET PASSWORD FOR 'root'@'localhost' = OLD_PASSWORD('test');
after I press enter is says query ok..
Then I go to the next step... by putting in
ALTER TABLE `account`.`account` MODIFY COLUMN `password` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL;
then its says..
ERROR 1146 (42S02): Table 'account.account' doesn't exist
It also asks for you to put in
insert into account.account (name,password,reg_date) values ('test','53b6320eb06e2c62888a6d1739cd24bd',now());
grant all on account.* to 'ODBC'@'localhost';
grant all on my.* to 'ODBC'@'localhost';
But I get the same message after trying those as well.
Can someone please help me, and let me know what I did wrong or have to change.
Thanks...






