mysql>GRANT ALL PRIVILEGES ON eq.* TO bigpbob@localhost
IDENTIFIED BY 'pop' WITH GRANT OPTION;
Yep, change bigpbob to your db.ini username and pop to you db.ini password
You can also use '%'@localhost <-- gives anyone on that computer access as long as password matches
*.* instead of eq.* to give access to all databases
and '%' instead of 'pop' to let any password work
Mix and match the above 3 as you see fit, but actually use a user and password if others will be accessing the server.
|