I have looked and found many wrong ways to accomplish something like:
connectionString = "Server=" + server + ";" + "Database=" + database + ";" + "Uid=" + uid + ";" + "Pwd=" + password + ";" + "useOldAuth=true;";
Notice the "useOldAuth=true;" that is what I an essentially trying to do.
My problem is that I cannot connect to my db because of the "Authentication with old password no longer supported, use 4.1 style passwords." issue.
I checked with my hosting provider and they said they cannot/willnot change their server just for me so I need to find a way to connect within the code using the old auth.
I have poured through this and not found anything useful... What am I missing? Thanks!