| 
 Posted by Janwillem Borleffs on 06/29/06 20:59 
news.telia.net wrote: 
> Then I tried to write mysql in cmd at c:\mysql\bin but I get this 
> error: Access denied for user 'ODBC'@'localhost' (using password: No) 
> 
> Why?? 
> 
 
Search the MySQL on-line manual for GRANT; you will need something in the  
lines of the following: 
 
GRANT <permissions> ON dbname TO ODBC@localhost IDENTIFIED BY 'password' 
 
Where <permissions> can be anything from SELECT to ALL. 
 
 
JW
 
[Back to original message] 
 |