I'm accessing a Microsoft Access database file via the pyodbc module. I'm running Python 2.7 (32 bit) under Windows 8 (64 bit) with a Microsoft Office installation (32 bit). So, I downloaded the Microsoft Access ODBC Driver 32-bit from here. That works with my current stuff (Python 2 32 bit and Access 32 bit). But I also want to use the module from my Python 2.7 (64-bit) installation. So I download the Access Driver (64 bit), but when trying to install it, the wizard says that my Access instalation is 32 bit, so I can't procceed. And obviously, when running pyodbc under Python 2.7 (64 bit) the module isn't recognizing the driver, throwing this error:
Error: ('IM002', '[IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (0) (SQLDriverConnectW)')
How can achieve this?
Thanks in advance.