This is just a heads up for those of you that use MySQL. I just downloaded their latest drivers, when I used the regular connection string I keep getting an error message telling me that Data source name was not found. Come to find out that they have changed the name of the ODBC driver. So instead of using MySQL you have to use the full name of the driver.

Use to be

driver={MySQL};server=localhost;uid=username;pwd=yourpassword;database=dbName

Is now

driver={MySQL ODBC 3.51 Driver};server=localhost;uid=username;pwd=yourpassword;database=dbName