MS Access Firewall for django

I am working on modifying the django-pyodbc package so that it can be used with MS Access.

I need this for the old database, which we are attached to in my organization, and did pretty hacky work specific to my situation, but also made useful, generalized progress in terms of adapting SQL syntax for MS Access.

My question is: is this a project that interests anyone else in the world? should I clear my code and try to completely generalize it, or can everyone else in the world solve problems with access to MS by switching to SQL server?

+4
source share
1 answer

I would move the data to SQL Server if this is an option.

If moving data is not an option, and if my Django application is already connecting to SQL Server, I can simply create a linked server on SQL Server and instead start SQL Server.

0
source

Source: https://habr.com/ru/post/1300336/


All Articles