I have to write another script to connect command-line vbscript to Micros, which uses SQL Anywhere 11. When I try to make the connection I get this error:
and the connection:
Apparently that error has something to do with 32- vs. 64-bit drivers, but I don't know how to fix it. Please help, thanks!
Code:
The specified dsn contains an architecture mismatch between the driver and application
code 80004005
and the connection:
Code:
Set Connection = CreateObject("ADODB.Connection")
strdsn = "DSN=micros;UID=********;PWD=********;"
connection.open strdsn
Apparently that error has something to do with 32- vs. 64-bit drivers, but I don't know how to fix it. Please help, thanks!