I have a Microsoft Access 2007 database (.accdb) used in CRM and would really like to create an unmanaged model in django to access data (read-only) for a fast and dirty web application.
What are my options here? I looked at django-pyodbc, but they unfortunately only support ms sql connections at this time. This made me think, maybe there is a way to reflect the Microsoft Access database on the MS SQL server through ODBC, and then connect to it through the django-mssql or django-pyodbc application?
Another option is to convert the access database to some intermediate database file that can be accessed through django. The downfall of this approach is that I will need to ensure that this intermediate database is regularly synchronized with the access database, so the intermediate db is updated.
Does anyone have any ideas on how I can connect to Access 2007 CRM data through django?
linqq source
share