My client just bought new Windows 11 laptop. I am trying to install an Access program that uses a mysql database via ODBC 5.1. My old MySQL connector odbc 5.1.13 win 32 won't install - error 1918 says myodbc5S.dll is missing. My connection string in the OpenProg module:
MyConnectionString = "ODBC;Driver={MySQL ODBC 5.1 Driver};" & _
"Server=www.cardinallga.com;Database=" & "acardina_clga" & ";" & _ ...etc.
First of all, the program runs perfectly on my own laptop that was upgraded from Win10 to 11, so I know there is no problem using the 5.1 connector on Win 11. I really don't want to move to current version of the connector since other clients are running successfully on 5.1. and I would have to maintain two versions of the program. Next, with great difficulty, I installed mysql connector odbc 8.0 and tried to change MyConnectionString to reference MySQL ODBC 8.0 Driver, but it is still looking for 5.1. I cannot find another reference to the driver anywhere in the module or elsewhere in the program. I have not a clue what to try or where to look. Any help would be appreciated! This really shouldn't be this hard!
MyConnectionString = "ODBC;Driver={MySQL ODBC 5.1 Driver};" & _
"Server=www.cardinallga.com;Database=" & "acardina_clga" & ";" & _ ...etc.
First of all, the program runs perfectly on my own laptop that was upgraded from Win10 to 11, so I know there is no problem using the 5.1 connector on Win 11. I really don't want to move to current version of the connector since other clients are running successfully on 5.1. and I would have to maintain two versions of the program. Next, with great difficulty, I installed mysql connector odbc 8.0 and tried to change MyConnectionString to reference MySQL ODBC 8.0 Driver, but it is still looking for 5.1. I cannot find another reference to the driver anywhere in the module or elsewhere in the program. I have not a clue what to try or where to look. Any help would be appreciated! This really shouldn't be this hard!