While trying to debug my site, I suddenly started getting this error:
ERROR [HY000] [MySQL][ODBC 3.51 Driver]Access denied for user 'admin'@'XXXXXXXX' (using password: YES)
and it pointed to these lines of code:
Line 37: using (OdbcConnection con = new OdbcConnection(ConnStr))
Line 38: {
Line 39: con.Open();
I finally fixed the problem by changing this code:
private const string ConnStr = "Driver={MySQL ODBC 3.51 Driver};"
+ "Server=xxxx.xxx;Database=xxxx;uid=xxx;pwd=xxXXxx;option=3";
from uid=admin to uid=root. I'm sure it's bad coding practice to list root, but it's all I can do to get it to work.
Now the issue. Suddenly a lot of my pages have this problem. Last week they were working fine. Now they won't work unless I change 'admin' to 'root'. I've looked all around, but I think I've created my own unique brand of stupidity. Any help is appreciated. Thanks.