I logged into mysql as root and then entered the following code:
grant select, insert, update, delete, index, alter, create, drop
on books.*
to bookorama identified by 'new';
Then I log out of mysql and when I try to log back in and enter new for password, I get an error and the window of mysql closes. I am using this on Windowns 7. How would I log in as the new user I created?
Figured it out, when I downloaded mysql I needed to check the box allowing commands from the command line, then I type mysql -h hostname username -p. hit enter and I am in mysql as a new user. Thanks you for the help