I inherited a website that is working fine. We are in the process of swicthing to a different host. Last week I had a working connection to the database using DSNless connection on the new host. The old host used DSN the new doesn't.
The connection string used is:
Set C = Server.CreateObject("ADODB.Connection")
C.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & server.mappath("..\db\database.mdb") & ";"
Today I try to run through the site before changing the DNS servers to point to the new host and I get the error:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x1d64 Thread 0x191c DBC 0x3068f024 Jet'.
Nothing changed on our end. Any ideas why we would get this error?
The connection string used is:
Set C = Server.CreateObject("ADODB.Connection")
C.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & server.mappath("..\db\database.mdb") & ";"
Today I try to run through the site before changing the DNS servers to point to the new host and I get the error:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x1d64 Thread 0x191c DBC 0x3068f024 Jet'.
Nothing changed on our end. Any ideas why we would get this error?