I want to use a MS Access Table as the backend for a django form. I found that there is a django.pyodbc, but having trouble connecting it through there. I also understand this is not the best option, but this is what I have to work with right now plus this is only going to be for internal use. Has anyone successfully connected them can show an example?
DATABASES = { 'default': { 'ENGINE': '', 'HOST': '', 'NAME': '', 'OPTIONS':{ 'host_is_server':True }, } }