View Single Post
  #5  
Old 04-23-2002, 01:14 PM
Lurker_005
Demi-God
 
Join Date: Jan 2002
Location: Tourist town USA
Posts: 1,671
Default

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.
Reply With Quote