View Single Post
  #7  
Old 06-02-2004, 08:41 AM
cofruben
Old-EQEmu Developer
 
Join Date: Oct 2002
Location: Spain
Posts: 323
Default

Quote:
Originally Posted by Jezebell
Code:
grant all privileges on *.* to username@% identified by "password" with grant option;
Would give someone who uses the specified username/password to connect to any database from any IP address.
that is not correct.
Code:
grant all privileges on *.* to username@% identified by 'password' with grant option
Reply With Quote