First, change your server name from 'Unnamed Server'
My guess would be that your mysql database isn't running.
Try this to see if it's working.
Click on the start button, select run. Type 'cmd'
cd C:\mysql\bin
mysql
if it goes to mysql> try this
use mysql;
select * from account;
verify some data comes back.
If something comes back, the problem is somewhere else. If this doesnt work, you need to reinstall mysql.
|