Re: MYSQL connection error
You should be using the MySQL driver (it is very different to the MS SQL driver), but I dont know what version you need.. the documentation for the driver (or the MySQL website) should provide the answers.
The error you are getting does mean that you are communicating with the server.. the problem is with the security, either what is set up on the server, or what you are specifying in the connection string.
Is your connection string in the following format (with underlined parts replaced as apt)?
Driver={MySQL ODBC 3.51 Driver};Server=data.domain.com;Port=3306;Database=myDataBase;User=myUsername;Password=myPassword;Option=3;
Does the user/password specified in the connection string match what has been set up within the database itself?
Re: MYSQL connection error
Thanks Si, your connection string was spot on.
What I was doing was entering the table name and not the database name, so I was getting to the server but obviously getting an error message.
It's always the little things cause the biggest headaches, cost me the best part of a day.
Thanks for your help, one and all :thumb: